1
這是我的程序,它與三個函數一起工作來執行heapsort。 我不能弄清楚問題在哪裏。 如果有人幫忙,我會很高興。調試heapsort
這兩個函數計算左和右索引
int left(int i)
{return(2*i+1);}
int right(int i)
{return(2*i+2);}
最大這裏是最大的數組索引。 一個是數組 我是該指數
void maxheapify(int i,int *a,int max)
{
if(i>(max-1)/2)
return;
else
{
int big=0,temp=0;
if(a[i]<a[left(i)])
big=left(i);
if(right(i)<=max && a[i]<a[right(i)])
big=right(i);
if(big==i)
return;
else
{
temp=a[big];
a[big]=a[i];
a[i]=temp;
maxheapify(big,a,max);
}
}
}
void buildmaxheap(int *a,int max)
{
int i;
for(i=0;i<=(max-1)/2;i++)
maxheapify(i,a,max);
}
void heapsort(int *a,int max)
{
int j=0,temp=0;
for(j=max;j>0;j--)
{
buildmaxheap(a,j);
temp=a[0];
a[0]=a[j];
a[j]=temp;
}
}
請更具體的問題是什麼,它會減少很多猜想工作的人誰想要幫助你。 – TopGunCoder