Java 实现最大堆

本文介绍了一份针对Java开发者的学习资料,覆盖零基础到进阶课程,包括数据结构、堆排序实现、Redis底层原理等内容,旨在帮助开发者系统学习并提升技能,降低学习成本。
摘要由CSDN通过智能技术生成
  1. return heap;

  2. }

  3. public HeapImpl() {

  4. this.heap = new ArrayList<>();

  5. }

  6. /**

  7. * 插入对应上浮

  8. *

  9. * @param start

  10. */

  11. protected void adjustUp(int start) {

  12. int currentIndex = start;

  13. int parentIndex = (currentIndex - 1) / 2;

  14. T tmp = heap.get(currentIndex);

  15. while (currentIndex > 0) {

  16. int cmp = heap.get(parentIndex).compareTo(tmp);

  17. if (cmp >= 0) {

  18. break;

  19. } else {

  20. heap.set(currentIndex, heap.get(parentIndex));

  21. currentIndex = parentIndex;

  22. parentIndex = (parentIndex - 1) / 2;

  23. }

  24. }

  25. heap.set(currentIndex, tmp);

  26. }

  27. public void insert(T data) {

  28. int size = heap.size();

  29. heap.add(data); // 将"数组"插在表尾

  30. adjustUp(size); // 向上调整堆

  31. }

  32. public void remove(int index) {

  33. int size = heap.size();

  34. heap.set(index, heap.get(size - 1));

  35. heap.remove(size - 1);

  36. adjustDown(index);

  37. }

  38. /**

  39. * 删除对应下沉

  40. *

  41. * @param index

  42. */

  43. private void adjustDown(int index) {

  44. int currentIndex = index;

  45. int leftChildIndex = index * 2 + 1;

  46. int rightChildIndex = index * 2 + 2;

  47. T tmp = heap.get(currentIndex);

  48. int size = heap.size();

  49. while (leftChildIndex < size) {

  50. T left = null;

  51. T right = null;

  52. if (leftChildIndex < size) {

  53. left = heap.get(leftChildIndex);

  54. }

  55. if (rightChildIndex < size) {

  56. right = heap.get(rightChildIndex);

  57. }

  58. int maxIndex = right == null ? leftChildIndex : (left.compareTo(right) >= 0 ? leftChildIndex : rightChildIndex);

  59. T max = heap.get(maxIndex);

  60. if(tmp.compareTo(max)>= 0){

  61. break;

  62. } else{

  63. heap.set(currentIndex, max);

  64. heap.set(maxIndex, tmp);

  65. leftChildIndex = maxIndex * 2 + 1;

  66. rightChildIndex = maxIndex + 1;

  67. }

  68. }

  69. }

  70. public void makeHeap(int first, int last) {

  71. for ( int i = first; i < last; i++) {

  72. insert(orginList.get(i));

  73. }

  74. }

  75. public void popHeap(int first, int last) {

  76. remove(first);

  77. }

  78. public void pushHeap(int first, int last) {

  79. adjustUp(last - 1);

  80. }

  81. public void display() {

  82. System.out.println(heap);

  83. }

  84. public static void main(String[] args) {

  85. IHeap heap = new HeapImpl<>();

  86. heap.initOriginList(Arrays.asList( 10, 20, 30, 5, 15));

  87. System.out.println( “初始构建堆:”);

  88. heap.makeHeap( 0, 5);

自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数Java工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年Java开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Java开发知识点,真正体系化!

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!

如果你觉得这些内容对你有帮助,可以扫码获取!!(备注Java获取)

img

最后

这份文档从构建一个键值数据库的关键架构入手,不仅带你建立起全局观,还帮你迅速抓住核心主线。除此之外,还会具体讲解数据结构、线程模型、网络框架、持久化、主从同步和切片集群等,帮你搞懂底层原理。相信这对于所有层次的Redis使用者都是一份非常完美的教程了。

image

整理不易,觉得有帮助的朋友可以帮忙点赞分享支持一下小编~

你的支持,我的动力;祝各位前程似锦,offer不断!!!
《互联网大厂面试真题解析、进阶开发核心学习笔记、全套讲解视频、实战项目源码讲义》点击传送门即可获取!
" style=“zoom: 33%;” />

最后

这份文档从构建一个键值数据库的关键架构入手,不仅带你建立起全局观,还帮你迅速抓住核心主线。除此之外,还会具体讲解数据结构、线程模型、网络框架、持久化、主从同步和切片集群等,帮你搞懂底层原理。相信这对于所有层次的Redis使用者都是一份非常完美的教程了。

[外链图片转存中…(img-5h43dPkB-1713112076767)]

整理不易,觉得有帮助的朋友可以帮忙点赞分享支持一下小编~

你的支持,我的动力;祝各位前程似锦,offer不断!!!
《互联网大厂面试真题解析、进阶开发核心学习笔记、全套讲解视频、实战项目源码讲义》点击传送门即可获取!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值