摘要: #include "stdio.h" #include "malloc.h" #include "stdlib.h" typedef struct BTNode { int data; struct BTNode *Lchild,*Rchild; }BTree; //初始化 BTree * Ini_BTNode() { BTree *bt ; int a; ... 阅读全文
posted @ 2017-04-24 10:09 Doublekai 阅读(4420) 评论(0) 推荐(0) 编辑