c – 最大堆实现

c – 最大堆实现,第1张

概述下面是max-heap实现的代码 #include<iostream>#include<math.h>using namespace std;#define maxn 1000int x[maxn];int parent(int i){ return int(i/2);}int left(int i){ return 2*i;}int right(int 下面是max-heap实现的代码

#include<iostream>#include<math.h>using namespace std;#define  maxn 1000int x[maxn];int parent(int i){    return int(i/2);}int left(int i){    return 2*i;}int right(int i){    return 2*i+1;}voID  max_heap(int x[],int i,int size){    int largest;    int l=left(i);    int r=right(i);    if (l<=size &&  x[l]>x[i]){        largest=l;    }    else    {        largest=i;    }    if (r<=size && x[r]>x[largest]){    largest=r;    }    if (largest!=i)  { int s=x[i];x[i]=x[largest];x[largest]=s;}    max_heap(x,largest,size);}int main(){ x[1]=16; x[2]=4; x[3]=10; x[4]=14; x[5]=7; x[6]=9; x[7]=3; x[8]=2; x[9]=8; x[10]=1;  int size=10;  max_heap(x,2,size);   for (int i=1;i<=10;i++)       cout<<x[i]<<"  ";    return 0;}

当我运行它时,会写出这样的警告:

1>c:\users\datuashvili\documents\visual studio 2010\projects\heap_property\heap_property\heap_property.cpp(36): warning C4717: 'max_heap' : recursive on all control paths,function will cause runtime stack overflow

请告诉我有什么问题?

解决方法 该消息告诉您究竟出了什么问题.您尚未实施任何检查来停止递归.一个智能编译器. 总结

以上是内存溢出为你收集整理的c – 最大堆实现全部内容,希望文章能够帮你解决c – 最大堆实现所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1223243.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存