实现构建堆

向上调整(边插入边调整)

#include <bits/stdc++.h>
using namespace std;
int const N = 1000 + 10;
int a[N],n;
void adjustup(int a[N],int p){    //小顶堆
    int parent,child;
    int tmp = a[p];
    for(child=p;child/2>=1;child=parent){
        parent = child / 2;
        if(a[parent] > tmp)  a[child] = a[parent];
        else    break;
    }
    a[child] = tmp;
}
int main(){
    scanf("%d",&n);
    for(int i=1;i<=n;i++){
        scanf("%d",&a[i]);
        adjustup(a,i);  //边插入边向上调整  
    }
    return 0;
}

向下调整(实现堆排序)

void adjustdown(int T[N],int p,int n){
    int parent,child;
    int tmp = T[p];
    for(parent=p;2*parent<=n;parent=child){
        child = 2 * parent;
        if(child != n && T[child] < T[child+1])  child++;
        if(T[child] > tmp)    T[parent] = T[child];
        else break;
    }
    T[parent] = tmp;
}
void Heap_Sort(int a[N],int n){
    for(int i=n/2;i>=1;i--)
        adjustdown(a,i,n);
    for(int i=n;i>=1;i--){
        swap(a[i],a[1]);
        adjustdown(a,1,i-1);
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值