信管1172唐杰数据结构实验五

#include<iostream> using namespace std; #include<string> struct node { string date; node *lchild,*rchild,*parent; }; class tree { public: tree() { root=Creat(root); } ~tree() { Release(root); } void P
相关文章
相关标签/搜索