鏈式二叉樹

#include<iostream> #include<string> using namespace std; template<class T> struct Node { T data; Node<T> *lchild,*rchild; }; template <class T> class Tree { public: Tree(){root=Creat(root);} ~Tree(){R
相關文章
相關標籤/搜索