摘要: 1 #include 2 #include 3 4 typedef char ElemType; 5 6 typedef struct node{ 7 ElemType data; 8 struct node *lson; 9 struct node *rson; 10 }Bynode,*Bytree; 11 12 Bytree CreateByt... 阅读全文
posted @ 2016-11-07 19:30 惟愿。。。 阅读(304) 评论(0) 推荐(0) 编辑