摘要: #include<bits/stdc++.h> #define MaxSize 100 using namespace std; typedef struct AVLNode *Position; typedef Position AVLTree; struct AVLNode{ int data; 阅读全文
posted @ 2019-12-25 20:46 acwarming 阅读(154) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> #define MaxSize 100 using namespace std; typedef struct TreeNode {//定义二叉树结构 char Data; struct Node *lchild,*rchild; }*BiTree,B 阅读全文
posted @ 2019-12-25 16:47 acwarming 阅读(425) 评论(0) 推荐(0) 编辑