文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>堆排序算法

堆排序算法

时间:2010-05-17  来源:华南理工大学

#include<iostream>
using namespace std;
void HeapAdjust(int H[] ,int s,int m)
{
 int rc=H[s];
 int j;
 for(j=s*2;j<=m;j*=2)
 {
  if(j<m && H[j]<H[j+1])
   j++;
  if(rc>H[j])break;
  H[s]=H[j];
  s=j;
 }
 H[s]=rc;
}
void HeapSort(int H[],int length)
{
 for(int i=length/2;i>0;--i)
 {
  HeapAdjust(H,i,length);
 }
 for(i=length;i>1;--i)
 {
  int temp;
  temp=H[1];H[1]=H[i];H[i]=temp;
  HeapAdjust(H,1,i-1);
 }
}
int main()
{
 int H[11]={0,9,8,5,6,4,7,1,3,2,10};
 HeapSort(H,10);
 for(int i=1;i<=10;i++)
  cout<<H[i]<<" ";
 cout<<endl;
 return 0;
}


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载