编程语言
首页 > 编程语言> > 基础算法 838.堆排序

基础算法 838.堆排序

作者:互联网

堆排序中,最主要的是这个down()函数
#include<iostream>
using namespace std;

const int N = 100010;
int h[N], cnt;

void down( int k ){
    int t = k;
    if(k * 2 <= cnt && h[k * 2] < h[t]) t = k * 2;
    if(k * 2 + 1 <= cnt && h[k * 2 + 1] < h[t]) t = k * 2 + 1;
    
    if( k != t){
        swap(h[t], h[k]);
        down(t);
    }
}

int main(){
    int n, m;
    cin>>n>>m;
    cnt = n;
    for(int i = 1; i <= n; i ++) cin >> h[i];
    
    for(int i = n / 2; i ; i --) down (i);
    
    while(m--){
        cout<<h[1]<<" ";
        h[1] = h[cnt --];
        down(1);
    }
    return 0;
}

  

标签:std,cnt,int,838,堆排序,down,--,算法
来源: https://www.cnblogs.com/bz-2021/p/16222184.html