堆排序(C++版)

Posted

tags:

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

#include <iostream>

using namespace std;

void HeapAdjust(int* a, int start, int n)
{
    int max=start;
    int lchild = start*2+1;
    int rchild = start*2+2;
    if(start <= (n-1)/2){
        if(lchild <=n && a[lchild]>a[max]){
        max = lchild;
        }
        if(rchild <=n && a[rchild]>a[max]){
            max = rchild;
        }
        if(max!=start){
            swap(a[start], a[max]);
            HeapAdjust(a, max, n);
        }
    }
}

void BuildHeap(int* a, int n){  //n: [0,n]
    for(int i = (n-1)/2; i >=0;i--){
        HeapAdjust(a, i, n);
    }
}


void HeapSort(int *a,int n)
{
    BuildHeap(a,n);
    for(int i=n;i>=0;i--)
    {
        swap(a[0],a[i]);
        HeapAdjust(a,0,i-1);
    }
}

int main(int argc, char *argv[])
{
    int a[]={6,36,77,31,181,7,8};
    BuildHeap(a,6);
    for(int i=0;i<7;i++){
        cout << a[i] <<endl;
    }
    cout << "=================" <<endl;
    HeapSort(a,6);
    for(int i=0;i<7;i++){
        cout << a[i] <<endl;
    }
    return 0;
}

 

以上是关于堆排序(C++版)的主要内容,如果未能解决你的问题,请参考以下文章

堆排序-代码版

快速排序(QuickSort),归并排序(MergeSort),堆排序(HeapSort)典型C++代码实现总结

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

C++实现各种选择排序(简单选择排序,堆排序)

算法排序之堆排序

Java版高级数据结构堆树&堆排序