摘要:
直接上代码 1 #ifndef TREE_H 2 #define TREE_H 3 4 #include <iostream> 5 #include <malloc.h> 6 7 typedef int ElemType; 8 9 typedef struct Bintree10 {11 ElemType key;12 struct Bintree* left;13 struct Bintree* right;14 }Bintree,*pBintree;15 16 17 pBintree BT_Insert(ElemType target,pBintree* pp... 阅读全文