计算机基础--->数据结构(3)【堆(超详细)】

本文介绍了堆的概念,包括最大堆和最小堆,以及它们在排序、优先级队列等方面的应用。堆通常以完全二叉树形式存储,操作主要为插入和删除元素。堆排序的时间复杂度为O(nlogn),文章还提供了具体的Java代码示例来说明堆的实现和操作过程。
摘要由CSDN通过智能技术生成

堆一般分为两种类型:最大堆和最小堆。在最大堆中,父节点的值总是大于或等于子节点的值,而在最小堆中,父节点的值总是小于或等于子节点的值。堆可以被用来进行排序,如堆排序,它的时间复杂度是 O(nlogn)。堆还可以被用来实现优先级队列、图算法中的最短路径算法、高效的计算中位数等等

堆一般是完全二叉树,但不都是完全二叉树,只是为了方便存储和索引,我们通常用完全二叉树的形式来表示堆,事实上,广为人知的斐波那契堆和二项堆就不是完全二叉树,它们甚至都不是二叉树。

堆的时间复杂度

相较于有序数组,堆的主要优势在于插入和删除数据效率较高。 当只关心所有数据中的最大值或最小值,存在多次取最大值或最小值,多次插入或删除数据时,就可以使用堆。

有序数组
初始化O(nlog(n))O(n)
查找最大(最小)值O(n)O(1)
插入(删除)数据O(n)O(log(n))

堆的分类

堆分为 最大堆最小堆。二者的区别在于节点的排序方式。

  • 最大堆:堆中的每一个节点的值都大于等于子树中所有节点的值
  • 最小堆:堆中的每一个节点的值都小于等于子树中所有节点的值

在这里插入图片描述

堆的存储

由于完全二叉树的优秀性质,利用数组存储二叉树即节省空间,又方便索引(若根结点的序号为 1,那么对于树中任意节点 i,其左子节点序号为 2*i,右子节点序号为 2*i+1)。

在这里插入图片描述

Index0123456
value231820951

堆的操作

堆的操作主要包括两种:插入元素和删除堆顶元素。

插入元素

  1. 将要插入的元素放到最后
  2. 从底向上,如果父结点比该元素小,则该节点和父结点交换,直到无法交换

在这里插入图片描述

    // 向树中添加元素
    public void add(int val) {
        this.size++;
        this.data[this.size] = val;
//        floatUp();
        floatUp1(val);
    }

    // 上浮操作,交换操作
    private void floatUp() {
        int curIndex = this.size;
        int paintIndex = getParentIndex(curIndex);
        while (curIndex > 1 && this.data[curIndex] > this.data[paintIndex]) {
            swap(curIndex, paintIndex);
            curIndex = paintIndex;
            paintIndex = getParentIndex(curIndex);
        }
    }

    // 上浮操作,替换操作
    private void floatUp1(int ele) {
        int curIndex = this.size;
        int paintIndex = getParentIndex(curIndex);
        while (curIndex > 1 && ele > this.data[paintIndex]) {
            this.data[curIndex] = this.data[paintIndex];
            curIndex = paintIndex;
            paintIndex = getParentIndex(curIndex);
        }
        this.data[curIndex] = ele;
    }

删除堆顶元素

自底向上堆化

  1. 将堆顶元素删除
  2. 然后比较左右子结点,将较大的元素填充到根节点的位置
  3. 一直循环填充空出的位置,直到堆的最底部

会出现空节点,浪费存储空间

自顶向下堆化

  1. 将堆顶元素删除
  2. 将堆尾元素放到堆顶
  3. 判断堆顶元素和左右子结点,将较大的元素与堆顶元素交换
  4. 一直循环直至堆的最底部

在这里插入图片描述

    // 从堆中取出优先级最大的元素
    public int removeMaxValueFromHeap() {
        int result = this.data[1];
        this.data[1] = this.data[size];
        this.size--;

        int curIndex = 1;
        int leftChildIndex = getLeftChild(curIndex);
        while (leftChildIndex <= this.size) {
            int rightChildIndex = leftChildIndex + 1;

            // 判断右子树是否存在并且右子树要大于左子树,否则就是左子树与父结点进行判断
            if (rightChildIndex <= this.size && this.data[leftChildIndex] < this.data[rightChildIndex]) {
                swap(rightChildIndex, curIndex);
                curIndex = rightChildIndex;
            } else {
                if (this.data[leftChildIndex] > this.data[curIndex]) {
                    swap(leftChildIndex, curIndex);
                }
                curIndex = leftChildIndex;
            }
            leftChildIndex = getLeftChild(curIndex);
        }
        return result;
    }

堆排序

  1. 建堆,将一个无序的数组建立为一个堆
  2. 排序,将堆顶元素取出,对剩余元素进行堆化,直到所有元素被取出

建堆

建堆的过程就是一个对所有非叶节点的自顶向下堆化的过程。非叶节点就是最后一个节点的父结点以及它之前的元素都是非叶节点。也就是,如果节点个数为n,我们需要对n/2到1的节点进行自顶向下堆化。

在这里插入图片描述

    public MaxHeap(int[] arr) {
        this.data = new int[arr.length + 1];
        this.size = arr.length;
        for (int i = 0; i < arr.length; i++) {
            this.data[i + 1] = arr[i];
        }
        for (int i = this.size / 2; i > 0; i--) {
            sinkDown(i);
        }
    }
        // 从节点为index处开始下沉
    private void sinkDown(int index) {
        int curIndex = index;
        int leftChildIndex = getLeftChild(curIndex);
        while (leftChildIndex <= this.size) {
            int rightChildIndex = leftChildIndex + 1;

            // 判断右子树是否存在并且右子树要大于左子树,否则就是左子树与父结点进行判断
            if (rightChildIndex <= this.size && this.data[leftChildIndex] < this.data[rightChildIndex]) {
                swap(rightChildIndex, curIndex);
                curIndex = rightChildIndex;
            } else {
                if (this.data[leftChildIndex] > this.data[curIndex]) {
                    swap(leftChildIndex, curIndex);
                }
                curIndex = leftChildIndex;
            }
            leftChildIndex = getLeftChild(curIndex);
        }
    }

排序

由于堆顶元素是所有元素中最大的,所以我们重复取出堆顶元素,将这个最大的堆顶元素放至数组末尾,并对剩下的元素进行堆化即可。由于堆尾元素空出来了,我们就可以将取出的元素放在末尾,所以其实就是做了一次交换操作。

在这里插入图片描述

Index0123456
value232018951

在这里插入图片描述

Index0123456
value209181523

在这里插入图片描述

Index0123456
value189512023

在这里插入图片描述

Index0123456
value915182023

在这里插入图片描述

Index0123456
value519182023

在这里插入图片描述

Index0123456
value159182023

所有操作代码

package datastructure.heap;

import java.util.*;

public class MaxHeap {

    private int[] data; // 保存树中的节点值
    private int size; // 保存树中的节点个数

    public MaxHeap() {
        this.data = new int[500];
        Arrays.fill(data, Integer.MIN_VALUE);
        this.size = 0;
    }

    public MaxHeap(int[] arr) {
        this.data = new int[arr.length + 1];
        this.size = arr.length;
        for (int i = 0; i < arr.length; i++) {
            this.data[i + 1] = arr[i];
        }
        for (int i = this.size / 2; i > 0; i--) {
            sinkDown(i);
        }
    }

    // 判断堆是否为空
    public boolean isEmpty() {
        return this.size == 0;
    }

    // 获取堆中元素个数
    public int getSize() {
        return this.size;
    }

    // 根据当前节点所在数组的索引获取父结点的索引
    public int getParentIndex(int index) {
        if (index == 0) {
            return -1;
        }
        return index / 2;
    }

    // 根据当前节点所在数组的索引获取左孩子节点的索引
    public int getLeftChild(int index) {
        return index * 2;
    }

    // 向树中添加元素
    public void add(int val) {
        this.size++;
        this.data[this.size] = val;
//        floatUp();
        floatUp1(val);
    }

    // 上浮操作,交换操作
    private void floatUp() {
        int curIndex = this.size;
        int paintIndex = getParentIndex(curIndex);
        while (curIndex > 1 && this.data[curIndex] > this.data[paintIndex]) {
            swap(curIndex, paintIndex);
            curIndex = paintIndex;
            paintIndex = getParentIndex(curIndex);
        }
    }

    // 上浮操作,替换操作
    private void floatUp1(int ele) {
        int curIndex = this.size;
        int paintIndex = getParentIndex(curIndex);
        while (curIndex > 1 && ele > this.data[paintIndex]) {
            this.data[curIndex] = this.data[paintIndex];
            curIndex = paintIndex;
            paintIndex = getParentIndex(curIndex);
        }
        this.data[curIndex] = ele;
    }


    // 获取堆中最大元素
    public int getMaxValueFromHeap() {
        if (isEmpty()) {
            return -1;
        }
        return this.data[1];
    }

    // 从堆中取出优先级最大的元素
    public int removeMaxValueFromHeap() {
        int result = this.data[1];
        this.data[1] = this.data[size];
        this.size--;

        int curIndex = 1;
        sinkDown(curIndex);
        return result;
    }

    // 从节点为index处开始下沉
    private void sinkDown(int index) {
        int curIndex = index;
        int leftChildIndex = getLeftChild(curIndex);
        while (leftChildIndex <= this.size) {
            int rightChildIndex = leftChildIndex + 1;

            // 判断右子树是否存在并且右子树要大于左子树,否则就是左子树与父结点进行判断
            if (rightChildIndex <= this.size && this.data[leftChildIndex] < this.data[rightChildIndex]) {
                swap(rightChildIndex, curIndex);
                curIndex = rightChildIndex;
            } else {
                if (this.data[leftChildIndex] > this.data[curIndex]) {
                    swap(leftChildIndex, curIndex);
                }
                curIndex = leftChildIndex;
            }
            leftChildIndex = getLeftChild(curIndex);
        }
    }

    // 交换的方法
    private void swap(int curIndex, int changeIndex) {
        int temp = this.data[curIndex];
        this.data[curIndex] = this.data[changeIndex];
        this.data[changeIndex] = temp;
    }

    @Override
    public String toString() {
        StringBuffer sb = new StringBuffer("[");
        for (int i = 0; i < this.size; i++) {
            if (i == 0) {
                sb.append(this.data[i + 1]);
            } else {
                sb.append(", " + this.data[i + 1]);
            }

        }
        sb.append("]");
        return sb.toString();
    }

    public static void main(String[] args) {
        int[] arr = new int[]{23, 9, 20, 18, 5, 1};
        System.out.println("数组中的元素:" + Arrays.toString(arr));
        MaxHeap maxHeap = new MaxHeap(arr);
//        Arrays.stream(arr).forEach(maxHeap::add);
        // 将数组变为堆
        System.out.println("创建堆:" + maxHeap.toString());

        // 向堆中添加元素
        maxHeap.add(35);
        System.out.println("向堆中添加元素35:" + maxHeap.toString());

        // 删除堆顶元素
        maxHeap.removeMaxValueFromHeap();
        System.out.println("删除堆顶元素:" + maxHeap.toString());

        // 堆排序
        for (int i = 0; i < arr.length; i++) {
            arr[i] = maxHeap.removeMaxValueFromHeap();
        }
        System.out.println("堆排序:" + Arrays.toString(arr));
    }
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值