二叉樹的鏈式存儲結構存儲,實現樹的構造

#include<iostream> using namespace std; struct binode {char data; binode *lchild,*rchild; }; class tree { public: tree(){root=creat(root);} ~tree(){release(root);} void preorder() {preorder(root);} vo
相關文章
相關標籤/搜索