码迷,mamicode.com
首页 > 编程语言 > 详细

堆排序

时间:2019-10-14 15:00:42      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:temp   void   head   lse   wap   current   oid   bsp   EAP   

void swap(int* a,int i,int j){
int temp = a[i];
a[i] = a[j];
a[j] = temp;
}


void head(int* a,int current,int n){
if(current>=n) return;

int left = 2*current;
int right = left+1;

int max_index;
if(left>=n) return;
if(right>=n) max_index=left;
else max_index = (a[left]>a[right])?left:right;

if(a[current]<a[max_index]) {
swap(a[current],a[max_index]);
heap(a,max_index,n);
}

}


void sortheap(int *a,int n){
for(int i=N/2;i>=0;i--)
heap(a,i,n);
for(int i=n-1;i>=0;i--){
heap(a,0,i);
swap(a,0,i);
}

}

 

堆排序

标签:temp   void   head   lse   wap   current   oid   bsp   EAP   

原文地址:https://www.cnblogs.com/liangyc/p/11671146.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!