#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
欢迎分享,转载请注明来源:内存溢出
赞
(0)
打赏
微信扫一扫
支付宝扫一扫
09-golang格式化输出
上一篇
2022-06-10
Complete Binary Search Tree
下一篇
2022-06-10
评论列表(0条)