摘要: #include<bits/stdc++.h> #define MaxSize 100 using namespace std; typedef struct Node {//定义二叉树结构 char data; struct Node *lchild,*rchild; }*BiTree,BiTNo 阅读全文
posted @ 2019-11-06 19:25 acwarming 阅读(246) 评论(0) 推荐(0) 编辑