樹與二叉樹實驗2

#include<iostream.h> struct BiNode {  char data; BiNode *lchild,*rchild; }; class BiTree { public: BiTree(){root=Creat(root);}   ~BiTree(){Release(root);}   void PreOrder(){PreOrder(root);}   void InO
相關文章
相關標籤/搜索