zoukankan      html  css  js  c++  java
  • 排序算法(堆排序)

    堆排序是对选择排序的改进(时间复杂度和希尔排序一样O(nlog2n))

    数据结构:完全二叉树(大顶堆,根节点都比左右节点大,小顶堆,根节点小于双亲节点)

    public class HeapSort {
        public static void main(String[] args) {
            int a[]={1,2,4,9,33,2,6,7,10,11};
            sort(a, 10);
            for (int i = 0; i < a.length; i++) {
                System.out.print(a[i]+" ");
            }
            
        }
        
        //调整堆
        public static void heapAdjust(int a[],int s,int n){
            
            int i,temp;
            temp=a[s];
            
            for(i=2*s;i<n;i*=2){
                if(i+1<n&&a[i]<a[i+1]){
                    i++;
                }
                
                if(temp>=a[i]) break;
                
                a[s]=a[i];
                s=i;
            }
            a[s]=temp;
        }
        
        //交换位置
        public static void swap(int a[],int i,int j){
            int temp;
            temp=a[i];
            a[i]=a[j];
            a[j]=temp;
        }
        
        //排序
        public static void sort(int h[],int n){
            int i;
            for(i=n/2;i>0;i--){
                heapAdjust(h, i, n);
            }
            
            for(i=n-1;i>1;i--){
                swap(h, 1, i);
                heapAdjust(h, 1, i-1);
            }
        }
    }

  • 相关阅读:
    二维数组排序
    php-快速排序
    sql优化相关
    全页面静态化缓存
    php--1-100相加之和
    php--阶乘
    socket
    posix_getpid 函数win下失效问题
    水仙花数
    常用的魔术方法
  • 原文地址:https://www.cnblogs.com/LvLoveYuForever/p/5744317.html
Copyright © 2011-2022 走看看