标题:堆的输出
只看楼主
yixiliuyun
Rank: 1
等 级:新手上路
帖 子:14
专家分:0
注 册:2007-6-16
 问题点数:0 回复次数:0 
堆的输出
我想用二叉树中序遍历的方法输出堆
不知道那里的错误 请帮忙改正 谢谢
void PrintS(int count)//输出
{
if(2*count <= Heap[0])
PrintS(count = count*2);
cout << Heap[count] << endl;
if((2*count+1) <= Heap[0])
PrintS(count = count*2 +1);
}//PrintS
heap[0]是堆中数据的个数
heap[1....heap[0]]为数据
搜索更多相关主题的帖子: 二叉树 输出 count Heap 遍历 
2007-07-04 01:25



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-152515-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.837137 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved