第五次上机实验报告 计科 093xx 川 5310 实验内容 求二叉树的 xx 程序清单 #include #include #define OK 1 #define OVERFLOW -2 typedef int status; typedef struct BiNode// 二叉链表 {char Data; struct BiNode* lChild