20176401測繪17-1段建國數據結構第五章

#include using namespace std; template struct BiNode { T data; BiNode *lchild,*rchild; }; template class BiTree { public: BiTree(){root=NULL;} BiTree(BiNode*root); ~BiTree(); void PreOrder(BiNode*root
相關文章
相關標籤/搜索