You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: heap/README.md
+13-14
Original file line number
Diff line number
Diff line change
@@ -14,27 +14,27 @@ When pushing an element to a heap, because of the structure property, the new el
14
14
```ASCII
15
15
[Figure 1] Minimum heap push operation
16
16
17
-
20 20 15 15 15 5
18
-
/ \ / \ / \ / \ / \ / \
19
-
25 30 25 30 20 30 20 30 5 30 15 30
20
-
/ / / \ / \ / \
21
-
15 25 25 5 25 20 25 20
17
+
20 20 20 15 15 15 5
18
+
/ \ / \ / \ / \ / \ / \ / \
19
+
25 30 25 30 15 30 20 30 20 30 5 30 15 30
20
+
/ / / / \ / \ / \
21
+
15 25 25 25 5 25 20 25 20
22
22
23
-
(A) Add 15 (B) Add 5
23
+
(A) Push 15 (B) Push 5
24
24
```
25
25
26
-
The pop operation in a heap starts by replacing the root with the rightmost leaf. Then the root is swapped with the smaller child in a min heap (and the larger child in a max heap). The root is removed and the new root is percolated down until the heap property is achieved.
26
+
The pop operation in a heap starts by taking the root out and replacing its value with the rightmost leaf. Then the new root is swapped with the smaller child in a min heap (and the larger child in a max heap). The root is removed and the new root is percolated down until the heap property is achieved.
27
27
28
28
```ASCII
29
29
[Figure 2] Minimum heap pop operation
30
30
31
-
5 20 15 25 20 30
32
-
/ \ / \ / \ / \ / \ /
33
-
15 30 15 30 20 30 20 30 25 30 25
31
+
5 20 15 25 20 30
32
+
/ \ / \ / \ / \ / \ /
33
+
15 30 15 30 20 30 20 30 25 30 25
34
34
/ \ / /
35
35
25 20 25 25
36
36
37
-
(A) Remove (B) Remove (C) Remove
37
+
(A) Pop(B) Pop (C) Pop
38
38
```
39
39
40
40
An example implementation of this is provided as a [solution](./heap_sort.go) to the [heap sort](./heap_sort_test.go) rehearsal.
@@ -59,9 +59,8 @@ func main() {
59
59
heap.Push(h, i)
60
60
}
61
61
fori:=1; i <= 10; i++ {
62
-
fmt.Println(heap.Pop(h))
62
+
fmt.Println(heap.Pop(h))// Prints 10,9,8,...1
63
63
}
64
-
65
64
}
66
65
67
66
func(mmaxHeap) Len() int { returnlen(m) }
@@ -77,7 +76,7 @@ func (m *maxHeap) Pop() any {
77
76
}
78
77
```
79
78
80
-
To utilize a heap to store a particular type, certain methods such as len and less must be implemented for that type to conform to the heap interface. By default, the heap is a min heap, with each node smaller than its children. However, the package provides the flexibility to define what "being less than" means. For instance, changing `m[i] > m[j]` to `m[i] < m[j]` would transform the heap into a minimum heap.
79
+
To utilize a heap to store a particular type, certain methods such as len and less must be implemented for that type to conform to the heap interface. The package provides the flexibility to define what "being less than" means. For instance in the above example to changing `m[i] > m[j]` to `m[i] < m[j]` would transform the heap into a max heap.
81
80
82
81
In Go, heaps are implemented with slices. The heap property is maintained such that the left child of the node at index `i` (where i is greater than or equal to 1) is always located at `2i`, and the right child is at `2i+1`. If the slice already contains elements before pushing, the heap must be initialized using `heap.Init(h Interface)` to establish the order.
0 commit comments