mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-10-31 18:37:48 +08:00 
			
		
		
		
	 a005c6ebd3
			
		
	
	a005c6ebd3
	
	
	
		
			
			* Update avatar's link in the landing page * Bug fixes * Move assets folder from overrides to docs * Reduce figures' corner radius * Update copyright * Update header image * Krahets -> krahets * Update the landing page
		
			
				
	
	
		
			160 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			160 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| /**
 | |
|  * File: my_heap.java
 | |
|  * Created Time: 2023-01-07
 | |
|  * Author: krahets (krahets@163.com)
 | |
|  */
 | |
| 
 | |
| package chapter_heap;
 | |
| 
 | |
| import utils.*;
 | |
| import java.util.*;
 | |
| 
 | |
| /* 大顶堆 */
 | |
| class MaxHeap {
 | |
|     // 使用列表而非数组,这样无须考虑扩容问题
 | |
|     private List<Integer> maxHeap;
 | |
| 
 | |
|     /* 构造方法,根据输入列表建堆 */
 | |
|     public MaxHeap(List<Integer> nums) {
 | |
|         // 将列表元素原封不动添加进堆
 | |
|         maxHeap = new ArrayList<>(nums);
 | |
|         // 堆化除叶节点以外的其他所有节点
 | |
|         for (int i = parent(size() - 1); i >= 0; i--) {
 | |
|             siftDown(i);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     /* 获取左子节点的索引 */
 | |
|     private int left(int i) {
 | |
|         return 2 * i + 1;
 | |
|     }
 | |
| 
 | |
|     /* 获取右子节点的索引 */
 | |
|     private int right(int i) {
 | |
|         return 2 * i + 2;
 | |
|     }
 | |
| 
 | |
|     /* 获取父节点的索引 */
 | |
|     private int parent(int i) {
 | |
|         return (i - 1) / 2; // 向下整除
 | |
|     }
 | |
| 
 | |
|     /* 交换元素 */
 | |
|     private void swap(int i, int j) {
 | |
|         int tmp = maxHeap.get(i);
 | |
|         maxHeap.set(i, maxHeap.get(j));
 | |
|         maxHeap.set(j, tmp);
 | |
|     }
 | |
| 
 | |
|     /* 获取堆大小 */
 | |
|     public int size() {
 | |
|         return maxHeap.size();
 | |
|     }
 | |
| 
 | |
|     /* 判断堆是否为空 */
 | |
|     public boolean isEmpty() {
 | |
|         return size() == 0;
 | |
|     }
 | |
| 
 | |
|     /* 访问堆顶元素 */
 | |
|     public int peek() {
 | |
|         return maxHeap.get(0);
 | |
|     }
 | |
| 
 | |
|     /* 元素入堆 */
 | |
|     public void push(int val) {
 | |
|         // 添加节点
 | |
|         maxHeap.add(val);
 | |
|         // 从底至顶堆化
 | |
|         siftUp(size() - 1);
 | |
|     }
 | |
| 
 | |
|     /* 从节点 i 开始,从底至顶堆化 */
 | |
|     private void siftUp(int i) {
 | |
|         while (true) {
 | |
|             // 获取节点 i 的父节点
 | |
|             int p = parent(i);
 | |
|             // 当“越过根节点”或“节点无须修复”时,结束堆化
 | |
|             if (p < 0 || maxHeap.get(i) <= maxHeap.get(p))
 | |
|                 break;
 | |
|             // 交换两节点
 | |
|             swap(i, p);
 | |
|             // 循环向上堆化
 | |
|             i = p;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     /* 元素出堆 */
 | |
|     public int pop() {
 | |
|         // 判空处理
 | |
|         if (isEmpty())
 | |
|             throw new IndexOutOfBoundsException();
 | |
|         // 交换根节点与最右叶节点(交换首元素与尾元素)
 | |
|         swap(0, size() - 1);
 | |
|         // 删除节点
 | |
|         int val = maxHeap.remove(size() - 1);
 | |
|         // 从顶至底堆化
 | |
|         siftDown(0);
 | |
|         // 返回堆顶元素
 | |
|         return val;
 | |
|     }
 | |
| 
 | |
|     /* 从节点 i 开始,从顶至底堆化 */
 | |
|     private void siftDown(int i) {
 | |
|         while (true) {
 | |
|             // 判断节点 i, l, r 中值最大的节点,记为 ma
 | |
|             int l = left(i), r = right(i), ma = i;
 | |
|             if (l < size() && maxHeap.get(l) > maxHeap.get(ma))
 | |
|                 ma = l;
 | |
|             if (r < size() && maxHeap.get(r) > maxHeap.get(ma))
 | |
|                 ma = r;
 | |
|             // 若节点 i 最大或索引 l, r 越界,则无须继续堆化,跳出
 | |
|             if (ma == i)
 | |
|                 break;
 | |
|             // 交换两节点
 | |
|             swap(i, ma);
 | |
|             // 循环向下堆化
 | |
|             i = ma;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     /* 打印堆(二叉树) */
 | |
|     public void print() {
 | |
|         Queue<Integer> queue = new PriorityQueue<>((a, b) -> { return b - a; });
 | |
|         queue.addAll(maxHeap);
 | |
|         PrintUtil.printHeap(queue);
 | |
|     }
 | |
| }
 | |
| 
 | |
| public class my_heap {
 | |
|     public static void main(String[] args) {
 | |
|         /* 初始化大顶堆 */
 | |
|         MaxHeap maxHeap = new MaxHeap(Arrays.asList(9, 8, 6, 6, 7, 5, 2, 1, 4, 3, 6, 2));
 | |
|         System.out.println("\n输入列表并建堆后");
 | |
|         maxHeap.print();
 | |
| 
 | |
|         /* 获取堆顶元素 */
 | |
|         int peek = maxHeap.peek();
 | |
|         System.out.format("\n堆顶元素为 %d\n", peek);
 | |
| 
 | |
|         /* 元素入堆 */
 | |
|         int val = 7;
 | |
|         maxHeap.push(val);
 | |
|         System.out.format("\n元素 %d 入堆后\n", val);
 | |
|         maxHeap.print();
 | |
| 
 | |
|         /* 堆顶元素出堆 */
 | |
|         peek = maxHeap.pop();
 | |
|         System.out.format("\n堆顶元素 %d 出堆后\n", peek);
 | |
|         maxHeap.print();
 | |
| 
 | |
|         /* 获取堆大小 */
 | |
|         int size = maxHeap.size();
 | |
|         System.out.format("\n堆元素数量为 %d\n", size);
 | |
| 
 | |
|         /* 判断堆是否为空 */
 | |
|         boolean isEmpty = maxHeap.isEmpty();
 | |
|         System.out.format("\n堆是否为空 %b\n", isEmpty);
 | |
|     }
 | |
| }
 |