AcWing 838. 堆排序

Posted wisexu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AcWing 838. 堆排序相关的知识,希望对你有一定的参考价值。

AcWing 838. 堆排序


#include <bits/stdc++.h>
using namespace std;
const int N=1e6+10;
int h[N],num;
void down(int u){
    int t=u;
    if(u*2<=num&&h[u*2]<h[t]) t=u*2;
    if(u*2+1<=num&&h[u*2+1]<h[t]) t=u*2+1;
    if(u!=t){
        swap(h[u],h[t]);
        down(t);
    }
}
int main(){
    int n,m;
    scanf("%d%d",&n,&m);
    for(int i=1;i<=n;i++) scanf("%d",&h[i]);
    num=n;
    for(int i=n/2;i>0;i--) down(i);
    while(m--){
        printf("%d ",h[1]);
        h[1]=h[num];
        num--;
        down(1);
    }

    return 0;
}

以上是关于AcWing 838. 堆排序的主要内容,如果未能解决你的问题,请参考以下文章

838. 堆排序

838. 堆排序

AcWing - 145 - 超市 = 贪心

Java排序算法 - 堆排序的代码

AcWing 836. 合并集合

AcWing 839. 模拟堆