我的max_heap程序找不到自己,但是当我尝试添加build-Max-Heap程序时,它不起作用,请帮帮我
#include<iostream>
#include<math.h>
using namespace std;
#define maxn 1000
int 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){
bool s=true;
int largest;
for (int k=1;k<size/2;k++){
if(x[k]< x[2*k] || x[k]<x[2*k+1]){
s=false;
}
}
if (s==true) return;
else{
if(i>=size) return ;
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);
}
void build(int x[],int size){
int heapsize=size;
for (int i=(size/2);i>1;i--)
max_heap(x,i,size);
}
int main(){
x[1]=4;
x[2]=1;
x[3]=3;
x[4]=2;
x[5]=16;
x[6]=9;
x[7]=10;
x[8]=14;
x[9]=8;
x[10]=7;
build(x,10);
for (int i=1;i<=10;i++)
cout<<x[i]<<" ";
return 0;
}
请告诉我为什么它在你跑的时候停止工作?max_heap本身可以正常工作
答案 0 :(得分:0)
我认为当i==largest
你陷入无限递归时。当max_heap
的调用移动到前面的if
块时,崩溃消失了。
if (largest!=i){
int s=x[i];x[i]=x[largest];x[largest]=s;
max_heap(x,largest,size); // moved function call
}
此外,您必须更改build
循环以包含根元素。
for (int i=(size/2);i>=1;i--) // changed loop test
max_heap(x,i,size);