C++树的建立和遍历
摘要:
#include typedef char TElemtype; typedef struct Btree { TElemtype data; struct Btree *Lchild,*Rchild; }BTnode,*btree; void create_btree(btree &root) { int i,j; btree s,p[100]; ... 阅读全文
posted @ 2018-05-03 13:53 肀肀 阅读(3127) 评论(0) 推荐(0) 编辑