广告位联系
返回顶部
分享到

Java实现二叉堆、大顶堆和小顶堆

java 来源:互联网 作者:秩名 发布时间:2022-01-26 18:29:37 人浏览
摘要

什么是二叉堆 二叉堆就是完全二叉树,或者是靠近完全二叉树结构的二叉树。在二叉树建树时采取前序建树就是建立的完全二叉树。也就是二叉堆。所以二叉堆的建堆过程理论上讲和前

什么是二叉堆

二叉堆就是完全二叉树,或者是靠近完全二叉树结构的二叉树。在二叉树建树时采取前序建树就是建立的完全二叉树。也就是二叉堆。所以二叉堆的建堆过程理论上讲和前序建树一样。

什么是大顶堆、小顶堆

二叉堆本质上是一棵近完全的二叉树,那么大顶堆和小顶堆必然也是满足这个结构要求的。在此之上,大顶堆要求对于一个节点来说,它的左右节点都比它小;小顶堆要求对于一个节点来说,它的左右节点都比它大。

建堆

二叉堆建堆本质上和前序建堆差不多,只不过需要考虑的一点就是大小关系,这一点和二叉搜索树建树有点相似,所以可以得出结论,建树,本质上都是递归建树,只不过因为数据结构的大小要求不一样,需要的判断函数不一样,节点进入哪个位置也不一样。

大顶堆和小顶堆也分为稳定和不稳定的堆。稳定和不稳定指如果具备相同的值,那么他们的插入顺序应该和节点顺序一致。

程序实现

首先,定义出基本的堆结构

1

2

3

4

5

6

7

public class BinaryHeap {

 

    private Integer value;

 

    private BinaryHeap leftChild;

    private BinaryHeap rightChild;

}

建堆过程与建二叉树过程一致

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

public static BinaryHeap buildHeap(BinaryHeap binaryHeap, Integer value) {

    if (Objects.isNull(binaryHeap)) binaryHeap = new BinaryHeap();

    if (Objects.isNull(binaryHeap.getValue())) {

        binaryHeap.setValue(value);

        return binaryHeap;

    }

    if (Objects.isNull(binaryHeap.getLeftChild())) {

        BinaryHeap binaryHeap1 = new BinaryHeap();

        binaryHeap1.setValue(value);

        binaryHeap.setLeftChild(binaryHeap1);

    } else if (Objects.nonNull(binaryHeap.getLeftChild())) {

        if (Objects.isNull(binaryHeap.getRightChild())) {

            BinaryHeap binaryHeap1 = new BinaryHeap();

            binaryHeap1.setValue(value);

            binaryHeap.setRightChild(binaryHeap1);

        } else {

            // TODO: 2022/1/14 左右节点两种都不为null

            if (checkNull(binaryHeap.getLeftChild())) buildHeap(binaryHeap.getLeftChild(), value);

            else if (checkNull(binaryHeap.getRightChild())) buildHeap(binaryHeap.getRightChild(), value);

            else buildHeap(binaryHeap.getLeftChild(), value);

        }

 

    }

    return binaryHeap;

}

主要原理就是如果当前节点的左节点为空,则把当前值放到左节点,如果左节点不为空,右节点为空,则把值放到右节点。如果左右节点都不为空,就将建树过程转移到下一层,如果左节点有为空的子节点,就转移给左节点,如果左节点没有为空的子节点,且右节点有为空的子节点,那么转移给右节点。如果左右节点都没有为空的子节点,那么也转移给左节点。

以序列2,3,4,5,9,6,8,7为例,按照该算法建立出来的二叉堆结构如下:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

{

    "value": 2,

    "left_child": {

        "value": 3,

        "left_child": {

            "value": 4,

            "left_child": {

                "value": 8,

                "left_child": null,

                "right_child": null

            },

            "right_child": {

                "value": 7,

                "left_child": null,

                "right_child": null

            }

        },

        "right_child": {

            "value": 5,

            "left_child": null,

            "right_child": null

        }

    },

    "right_child": {

        "value": 1,

        "left_child": {

            "value": 9,

            "left_child": null,

            "right_child": null

        },

        "right_child": {

            "value": 6,

            "left_child": null,

            "right_child": null

        }

    }

}

建立大顶堆

大顶堆在建堆的基础上,有一个要求,根节点比左右子树的任何节点的值都大。那么建树的过程可以分为两步,对于每一个值,首先按照建树过程,会到二叉堆的最底部,然后通过不断的让自己与自己的根节点做比较,如果自己大于根节点,就交换自己与根节点的位置,递归回溯即可。

逻辑过程

假设现在红色节点组成的已经是一个大顶堆,现在新增了一个节点到这个二叉堆中,而且是比任意节点都大,那么黑色箭头将是该节点的行动路线,它会反复与父级比较,如果大于父级,则交换和父级的关系。

程序实现

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

public static BinaryHeap up(BinaryHeap father) {

  if (Objects.nonNull(father.getLeftChild())) {

    if (father.getValue() < father.getLeftChild().getValue()) {

      int c = father.getValue();

      father.setValue(father.getLeftChild().getValue());

      father.getLeftChild().setValue(c);

    }

    up(father.getLeftChild());

  }

  if (Objects.nonNull(father.getRightChild())) {

    if (father.getValue() < father.getRightChild().getValue()) {

      int c = father.getValue();

      father.setValue(father.getRightChild().getValue());

      father.getRightChild().setValue(c);

    }

    up(father.getRightChild());

  }

  return father;

}

该方法放在普通建树方法之后,就是大顶堆的建树方法了,总的方法如下:

1

2

3

4

5

public static BinaryHeap bigPush(BinaryHeap binaryHeap, Integer value) {

    binaryHeap = buildHeap(binaryHeap, value);

    up(binaryHeap);

    return binaryHeap;

}

还是以序列2,3,4,5,9,6,8,7为例,按照该算法建立出来的大顶堆结构如下:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

{

    "value": 9,

    "left_child": {

        "value": 8,

        "left_child": {

            "value": 7,

            "left_child": {

                "value": 2,

                "left_child": null,

                "right_child": null

            },

            "right_child": {

                "value": 4,

                "left_child": null,

                "right_child": null

            }

        },

        "right_child": {

            "value": 3,

            "left_child": null,

            "right_child": null

        }

    },

    "right_child": {

        "value": 6,

        "left_child": {

            "value": 1,

            "left_child": null,

            "right_child": null

        },

        "right_child": {

            "value": 5,

            "left_child": null,

            "right_child": null

        }

    }

}

建立小顶堆

小顶堆与大顶堆类似

逻辑过程

过程与大顶堆一致,不过此时是比父级小就和父级交换。

程序实现

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

public static BinaryHeap down(BinaryHeap father) {

    if (Objects.nonNull(father.getLeftChild())) {

        if (father.getValue() > father.getLeftChild().getValue()) {

            int c = father.getValue();

            father.setValue(father.getLeftChild().getValue());

            father.getLeftChild().setValue(c);

        }

        down(father.getLeftChild());

    }

    if (Objects.nonNull(father.getRightChild())) {

        if (father.getValue() > father.getRightChild().getValue()) {

            int c = father.getValue();

            father.setValue(father.getRightChild().getValue());

            father.getRightChild().setValue(c);

        }

        down(father.getRightChild());

    }

    return father;

}

这个是向下走的过程,最终代码为:

1

2

3

4

5

public static BinaryHeap smallPush(BinaryHeap binaryHeap, Integer value) {

    binaryHeap = buildHeap(binaryHeap, value);

    down(binaryHeap);

    return binaryHeap;

}

以序列2,3,4,5,9,6,8,7为例,按照该算法建立出来的小顶堆结构如下:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

{

    "value": 1,

    "left_child": {

        "value": 3,

        "left_child": {

            "value": 4,

            "left_child": {

                "value": 8,

                "left_child": null,

                "right_child": null

            },

            "right_child": {

                "value": 7,

                "left_child": null,

                "right_child": null

            }

        },

        "right_child": {

            "value": 5,

            "left_child": null,

            "right_child": null

        }

    },

    "right_child": {

        "value": 2,

        "left_child": {

            "value": 9,

            "left_child": null,

            "right_child": null

        },

        "right_child": {

            "value": 6,

            "left_child": null,

            "right_child": null

        }

    }

}

从堆顶取数据并重构大小顶堆

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

public static Integer bigPop(BinaryHeap binaryHeap) {

    Integer val = binaryHeap.getValue();

    if (binaryHeap.getLeftChild().getValue() >= binaryHeap.getRightChild().getValue()) {

        binaryHeap.setValue(binaryHeap.getLeftChild().getValue());

        BinaryHeap binaryHeap1 = mergeTree(binaryHeap.getLeftChild().getLeftChild(), binaryHeap.getLeftChild().getRightChild());

        up(binaryHeap1);

        binaryHeap.setLeftChild(binaryHeap1);

    } else {

        binaryHeap.setValue(binaryHeap.getRightChild().getValue());

        BinaryHeap binaryHeap1 = mergeTree(binaryHeap.getRightChild().getLeftChild(), binaryHeap.getRightChild().getRightChild());

        up(binaryHeap1);

        binaryHeap.setRightChild(binaryHeap1);

    }

    return val;

}

 

public static Integer smallPop(BinaryHeap binaryHeap) {

    Integer val = binaryHeap.getValue();

    if (binaryHeap.getLeftChild().getValue() <= binaryHeap.getRightChild().getValue()) {

        binaryHeap.setValue(binaryHeap.getLeftChild().getValue());

        BinaryHeap binaryHeap1 = mergeTree(binaryHeap.getLeftChild().getLeftChild(), binaryHeap.getLeftChild().getRightChild());

        down(binaryHeap1);

        binaryHeap.setLeftChild(binaryHeap1);

    } else {

        binaryHeap.setValue(binaryHeap.getRightChild().getValue());

        BinaryHeap binaryHeap1 = mergeTree(binaryHeap.getRightChild().getLeftChild(), binaryHeap.getRightChild().getRightChild());

        down(binaryHeap1);

        binaryHeap.setRightChild(binaryHeap1);

    }

    return val;

 

}

取出来之后,需要重新调用down或者up函数。以构建小顶堆,取出五次后的结果

1

2

3

4

5

6

7

8

9

10

11

12

13

14

public static void main(String[] args) {

        int[] a = new int[]{2, 3, 1, 4, 5, 9, 6, 8, 7};

 

        BinaryHeap binaryHeap = new BinaryHeap();

        for (int i = 0; i < a.length; i++) {

            binaryHeap = smallPush(binaryHeap, a[i]);

        }

        System.out.println(Json.toJson(smallPop(binaryHeap)));

        System.out.println(Json.toJson(smallPop(binaryHeap)));

        System.out.println(Json.toJson(smallPop(binaryHeap)));

        System.out.println(Json.toJson(smallPop(binaryHeap)));

        System.out.println(Json.toJson(smallPop(binaryHeap)));

        System.out.println(Json.toJson(binaryHeap));

    }

取完后的小顶堆为:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

{

    "value": 6,

    "left_child": {

        "value": 7,

        "left_child": {

            "value": 8,

            "left_child": null,

            "right_child": null

        },

        "right_child": null

    },

    "right_child": {

        "value": 9,

        "left_child": null,

        "right_child": null

    }

}


版权声明 : 本文内容来源于互联网或用户自行发布贡献,该文观点仅代表原作者本人。本站仅提供信息存储空间服务和不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权, 违法违规的内容, 请发送邮件至2530232025#qq.cn(#换@)举报,一经查实,本站将立刻删除。
原文链接 : https://blog.csdn.net/xielinrui123/article/details/122629751
相关文章
  • SpringBoot自定义错误处理逻辑介绍

    SpringBoot自定义错误处理逻辑介绍
    1. 自定义错误页面 将自定义错误页面放在 templates 的 error 文件夹下,SpringBoot 精确匹配错误信息,使用 4xx.html 或者 5xx.html 页面可以打印错误
  • Java实现手写一个线程池的代码

    Java实现手写一个线程池的代码
    线程池技术想必大家都不陌生把,相信在平时的工作中没有少用,而且这也是面试频率非常高的一个知识点,那么大家知道它的实现原理和
  • Java实现断点续传功能的代码

    Java实现断点续传功能的代码
    题目实现:网络资源的断点续传功能。 二、解题思路 获取要下载的资源网址 显示网络资源的大小 上次读取到的字节位置以及未读取的字节
  • 你可知HashMap为什么是线程不安全的
    HashMap 的线程不安全 HashMap 的线程不安全主要体现在下面两个方面 在 jdk 1.7 中,当并发执行扩容操作时会造成环形链和数据丢失的情况 在
  • ArrayList的动态扩容机制的介绍

    ArrayList的动态扩容机制的介绍
    对于 ArrayList 的动态扩容机制想必大家都听说过,之前的文章中也谈到过,不过由于时间久远,早已忘却。 所以利用这篇文章做做笔记,加
  • JVM基础之字节码的增强技术介绍

    JVM基础之字节码的增强技术介绍
    字节码增强技术 在上文中,着重介绍了字节码的结构,这为我们了解字节码增强技术的实现打下了基础。字节码增强技术就是一类对现有字
  • Java中的字节码增强技术

    Java中的字节码增强技术
    1.字节码增强技术 字节码增强技术就是一类对现有字节码进行修改或者动态生成全新字节码文件的技术。 参考地址 2.常见技术 技术分类 类
  • Redis BloomFilter布隆过滤器原理与实现

    Redis BloomFilter布隆过滤器原理与实现
    Bloom Filter 概念 布隆过滤器(英语:Bloom Filter)是1970年由一个叫布隆的小伙子提出的。它实际上是一个很长的二进制向量和一系列随机映射
  • Java C++算法题解leetcode801使序列递增的最小交换次

    Java C++算法题解leetcode801使序列递增的最小交换次
    题目要求 思路:状态机DP 实现一:状态机 Java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 class Solution { public int minSwap(int[] nums1, int[] nums2) { int n
  • Mybatis结果集映射与生命周期介绍

    Mybatis结果集映射与生命周期介绍
    一、ResultMap结果集映射 1、设计思想 对简单的语句做到零配置,对于复杂一点的语句,只需要描述语句之间的关系就行了 2、resultMap的应用场
  • 本站所有内容来源于互联网或用户自行发布,本站仅提供信息存储空间服务,不拥有版权,不承担法律责任。如有侵犯您的权益,请您联系站长处理!
  • Copyright © 2017-2022 F11.CN All Rights Reserved. F11站长开发者网 版权所有 | 苏ICP备2022031554号-1 | 51LA统计