堆排序相关

Posted --chenshou--

tags:

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

代码如下

#include<bits/stdc++.h>
using namespace std;

#define max_len 1000

void heapify( int tree [] , int n , int i ){
    
    if( i >= n )return ;
    
    int c1 = 2 * i + 1 ;
    int c2 = 2 * i + 2 ;
    int maxx = i ;
    if( c1 < n && tree[c1] > tree [maxx] ) maxx = c1 ;
    if( c2 < n && tree[c2] > tree [maxx] ) maxx = c2 ;
    if ( maxx != i ){
        swap( tree[maxx] , tree[i] );
        heapify( tree , n , maxx );
    }
}

void build_heap(int tree[], int n){
    int last_node = n-1 ;
    int parent = ( last_node - 1 ) / 2;
    for(int i = parent;i>=0;i-- ){
        heapify(tree , n , i );
    }
}

void heap_sort(int tree[],int n){
    build_heap(tree,n);
    for(int i=n-1;i>=0;i--){
        swap(tree[i],tree[0]);
        heapify(tree,i,0);
    }
}

int main(){
    int tree[]={2 ,5 ,3 ,1 ,10 ,4 };
    int n=6;
    heap_sort(tree,n);
    //heapify( tree , n , 0);
    for(int i=0;i<n;i++)printf("%d\n",tree[i]);
    return 0;
    
} 

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

堆排序与相关时间复杂度

堆排序相关

与堆和堆排序相关的问题

八大排序算法——堆排序(动图演示 思路分析 实例代码java 复杂度分析)

排序相关代码(数据结构笔试复测Leecode牛客)

数据结构-排序内部排序