數據結構第五章

樹 雙親孩子表示法 孩子兄弟表示法 二叉樹基本性質 二叉樹層序操作 二叉樹代碼 #include using namespace std; template struct binode { datatype data; binode*lchild,*rchild; }; template class bitree { public: bitree(){root=creat(root);} ~bit
相關文章
相關標籤/搜索