摘要: #include #include #include #define N 50 using namespace std; typedef struct tree{ char ch; struct tree *lchild; struct tree *rchild; }BitTree; //数组输入 BitTree *CreateTree(int A[], int... 阅读全文
posted @ 2018-12-01 12:12 Johnny、 阅读(3017) 评论(0) 推荐(0)
摘要: #include #include #include #define N 50 using namespace std; typedef struct tree{ char ch; struct tree *lchild; struct tree *rchild; }BitTree; //键盘输入 BitTree *CreateTree(){ BitTre... 阅读全文
posted @ 2018-12-01 00:32 Johnny、 阅读(409) 评论(0) 推荐(0)