From a704c0d7f28c111a744ce8d973460abab9822bec Mon Sep 17 00:00:00 2001 From: khoaxuantu <68913255+khoaxuantu@users.noreply.github.com> Date: Fri, 31 May 2024 11:30:55 +0700 Subject: [PATCH] feat: finalize ruby code transpilation (#1379) --- docs/chapter_heap/heap.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/chapter_heap/heap.md b/docs/chapter_heap/heap.md index 15db45fc1..d7ae9d2f0 100644 --- a/docs/chapter_heap/heap.md +++ b/docs/chapter_heap/heap.md @@ -122,17 +122,17 @@ Queue minHeap = new PriorityQueue<>(); // 初始化大顶堆(使用 lambda 表达式修改 Comparator 即可) Queue maxHeap = new PriorityQueue<>((a, b) -> b - a); - + /* 元素入堆 */ maxHeap.offer(1); maxHeap.offer(3); maxHeap.offer(2); maxHeap.offer(5); maxHeap.offer(4); - + /* 获取堆顶元素 */ int peek = maxHeap.peek(); // 5 - + /* 堆顶元素出堆 */ // 出堆元素会形成一个从大到小的序列 peek = maxHeap.poll(); // 5 @@ -140,13 +140,13 @@ peek = maxHeap.poll(); // 3 peek = maxHeap.poll(); // 2 peek = maxHeap.poll(); // 1 - + /* 获取堆大小 */ int size = maxHeap.size(); - + /* 判断堆是否为空 */ boolean isEmpty = maxHeap.isEmpty(); - + /* 输入列表并建堆 */ minHeap = new PriorityQueue<>(Arrays.asList(1, 3, 2, 5, 4)); ``` @@ -337,7 +337,7 @@ max_heap.push(2); max_heap.push(5); max_heap.push(4); - + /* 获取堆顶元素 */ let peek = max_heap.peek().unwrap(); // 5 @@ -373,17 +373,17 @@ var minHeap = PriorityQueue() // 初始化大顶堆(使用 lambda 表达式修改 Comparator 即可) val maxHeap = PriorityQueue { a: Int, b: Int -> b - a } - + /* 元素入堆 */ maxHeap.offer(1) maxHeap.offer(3) maxHeap.offer(2) maxHeap.offer(5) maxHeap.offer(4) - + /* 获取堆顶元素 */ var peek = maxHeap.peek() // 5 - + /* 堆顶元素出堆 */ // 出堆元素会形成一个从大到小的序列 peek = maxHeap.poll() // 5 @@ -391,13 +391,13 @@ peek = maxHeap.poll() // 3 peek = maxHeap.poll() // 2 peek = maxHeap.poll() // 1 - + /* 获取堆大小 */ val size = maxHeap.size - + /* 判断堆是否为空 */ val isEmpty = maxHeap.isEmpty() - + /* 输入列表并建堆 */ minHeap = PriorityQueue(mutableListOf(1, 3, 2, 5, 4)) ``` @@ -405,7 +405,7 @@ === "Ruby" ```ruby title="heap.rb" - + # Ruby 未提供内置 Heap 类 ``` === "Zig"