二叉树的顺序表示法(" ' "代表有子结点,"/"代表空指针,无'代表无子结点)
摘要:
可以把图6.16中的二叉树表示如下: A'B'/DC'E'G/F'HI从二叉树中读取的print函数C++算法代码: 1 template<class Elem> 2 void printhelp(BinNode*subroot) 3 { 4 if(subroot==NULL) cout<<"\\"; 5 else cout<<subroot->value(); 6 if((subroot->left==NULL)&&(subroot->right==NULL)) 阅读全文
posted @ 2012-12-01 20:49 Besion王 阅读(347) 评论(0) 推荐(0) 编辑