摘要: 1 #include <bits/stdc++.h> 2 using namespace std; 3 typedef struct BTNode { //链式存储结构 4 char data; 5 struct BTNode *lchild; 6 struct BTNode *rchild; 7 阅读全文
posted @ 2020-04-12 22:21 瓜瓜爱呱呱 阅读(126) 评论(0) 推荐(0) 编辑