堆排序(大顶堆)

堆排序(大顶堆),第1张

#include
#include 
#include
#include
using namespace std;

void adjust_heap(int a[],int root,int length){
	int left=2*root+1;
	int right=2*root+2;
	int max=root;
	if(lefta[max]){
		max=left;
	}
	if(righta[max]){
		max=right;
	}
	if(max!=root){
		swap(a[max],a[root]);
		adjust_heap(a,max,length);
	}
}

void build_heap(int a[],int len){
	for(int i=len/2-1;i>=0;i--){
		adjust_heap(a,i,len);
	}
}

void heap_sort(int a[],int len){
	build_heap(a,len);
	for(int i=len-1;i>0;i--){
		swap(a[0],a[i]);
		adjust_heap(a,0,i);
	}
}

int main(){
	int a[] = {3, 2, 7, 4, 2, -999, -21, 99, 0, 9  };
	//int a[]={49,38,65,97,76,13,27,49,-999,-99};
	int n=sizeof(a)/sizeof(int);
	for(int i=0;i 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1295269.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-10
下一篇 2022-06-10

发表评论

登录后才能评论

评论列表(0条)