Java实现堆排序

一、基本原理

1.数据保存策略

使用数组保存二叉堆的数据,数组中树的层级关系为:

1)下标为i的节点的父节点的下标是(i - 1) / 2

2)下标为i的节点的左子节点的下标是:2 * i + 1,右子节点是:2 * i + 2。

 

2.堆排序过程:

步骤1:新建一个数组

步骤2:使用这个数组建堆(自底向上下沉堆化)

步骤3:堆排序(循环替换末尾节点和root并下沉堆化root)

 

二、Java实现

 

package heap;

/**
 * 大顶堆,用数组实现
 */
public class MaxHeap {
    // 容器
    private int[] array;

    // 记录当前保存了多少元素
    private int count;

    // 容量
    private int capacity;

    public MaxHeap(int capacity) {
        this.capacity = capacity;
        this.count = 0;
        this.array = new int[capacity];
    }

    /**
     * 数组建堆
     * @param arr
     */
    public void buildMaxHeap(int[] arr) {
        while (arr.length > this.capacity) {
            // 数组数据超过容量,需要扩容
            resize();
        }

        this.count = arr.length;
        for (int i = 0; i < arr.length; i++) {
            this.array[i] = arr[i];
        }

        // 从第一个非叶子节点位置开始下沉堆化
        for (int i = (this.count - 1) / 2; i >= 0; i--) {
            this.downForward(i);
        }
    }

    /**
     * 堆排序
     * @return
     */
    public int[] heapSort() {
        int[] sortedArr = new int[count];
        int oldCount = this.count;

        for (int i = this.count - 1; i > 0; i--) {
            // 交换最后一个leaf节点和root
            exch(0, i);

            this.count--;

            // root下沉堆化
            downForward(0);
        }

        for (int i = 0; i < oldCount; i++) {
            sortedArr[i] = this.array[i];
        }

        this.count = oldCount;
        return sortedArr;
    }

    /**
     * 父节点在数组中的位置
     * @param i
     * @return
     */
    public int parentIdx(int i) {
        if (i <= 0 || i >= this.count) {
            return -1;
        }

        return (i - 1) / 2;
    }

    /**
     * 左子节点在数组中的位置
     * @return
     */
    private int leftChildIdx(int i) {
        int left = 2 * i + 1;
        if (left >= this.count) {
            return -1;
        }
        return left;
    }

    /**
     * 右子节点在数组中的位置
     * @param i
     * @return
     */
    private int rightChildIdx(int i) {
        int right = 2 * i + 2;
        if (right >= this.count) {
            return -1;
        }
        return right;
    }

    /**
     * 从节点i开始下沉堆化
     * @param i
     */
    private void downForward(int i) {
        if (i >= this.count - 1) {
            return;
        }

        int left = this.leftChildIdx(i);
        int right = this.rightChildIdx(i);

        // 比较节点i与左、右子节点
        int maxIdx = this.maxIdx(i, left, right);
        if (maxIdx == -1 || maxIdx == i) {
            // 没有子节点了,或者左右子节点都比自己小,就结束
            return;
        }

        // 下沉
        this.exch(i, maxIdx);

        // 继续下沉
        downForward(maxIdx);
    }

    private int maxIdx(int i, int left, int right) {
        if (left == -1 && right == -1) {
            return -1;
        }

        int max = i;
        if (left != -1) {
            if (this.array[left] > this.array[max]) {
                max = left;
            }
        }

        if (right != -1) {
            if (this.array[right] > this.array[max]) {
                max = right;
            }
        }

        return max;
    }

    private void exch(int i, int j) {
        int tmp = this.array[i];
        this.array[i] = this.array[j];
        this.array[j] = tmp;
    }

    /**
     * 双倍扩容
     */
    private void resize() {
        int[] oldArr = this.array;
        this.array = new int[this.capacity * 2];
        for (int i = 0; i < this.capacity; i++) {
            this.array[i] = oldArr[i];
        }
        this.capacity = capacity * 2;
    }

    public int size() {
        return this.count;
    }

    /**
     * 分层打印
     */
    public void printHeapByLayer() {
        int history = 0;
        int h = 0;
        while (history < this.count) {
            System.out.print("layer_" + h + ": ");
            int layerCnt = 1 << h;

            int remain = this.count - history;
            int printSize = Math.min(remain, layerCnt);

            for (int i = history; i < history + printSize - 1; i++) {
                System.out.print(this.array[i] + ",");
            }
            System.out.println(this.array[history + printSize - 1]);

            history += printSize;
            h++;
        }
    }
}

测试:

package heap;

import com.alibaba.fastjson.JSON;

public class Test {
    public static void main(String[] args) {
        int[] arr = {31,1,21,5,10,12,18,3,2,8,7};

        // 数组建堆
        MaxHeap maxHeap = new MaxHeap(10);
        maxHeap.buildMaxHeap(arr);

        System.out.println("数组建堆结果:");
        maxHeap.printHeapByLayer();

        // 堆排序
        int[] sortedArr = maxHeap.heapSort();

        System.out.println();
        System.out.println("堆排序结果:");
        System.out.println(JSON.toJSON(sortedArr));
    }
}

最终打印:

数组建堆结果:
layer_0: 31
layer_1: 10,21
layer_2: 5,8,12,18
layer_3: 3,2,1,7

堆排序结果:
[1,2,3,5,7,8,10,12,18,21,31]

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值