摘要: #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-02 02:09 Johnny、 阅读(2156) 评论(0) 推荐(0) 编辑