这是我的程序,它使用三个函数来执行堆排序。我无法弄清楚问题出在哪里。如果有人帮忙,我会很高兴。
这两个函数计算索引的左右
int left(int i)
{return(2*i+1);}
int right(int i)
{return(2*i+2);}
max 这里是最大数组索引。a 是数组 i 是索引
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;
}
}