数据结构第五章

树 双亲孩子表示法 孩子兄弟表示法 二叉树基本性质 二叉树层序操作 二叉树代码 #include using namespace std; template struct binode { datatype data; binode*lchild,*rchild; }; template class bitree { public: bitree(){root=creat(root);} ~bit
相关文章
相关标签/搜索