Skip to content

Commit 43d4819

Browse files
authored
Heap clarifying rehearsal problems (#180)
1 parent 029e868 commit 43d4819

8 files changed

+54
-25
lines changed

heap/README.md

+13-14
Original file line numberDiff line numberDiff line change
@@ -14,27 +14,27 @@ When pushing an element to a heap, because of the structure property, the new el
1414
```ASCII
1515
[Figure 1] Minimum heap push operation
1616
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
2222
23-
(A) Add 15 (B) Add 5
23+
(A) Push 15 (B) Push 5
2424
```
2525

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.
2727

2828
```ASCII
2929
[Figure 2] Minimum heap pop operation
3030
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
3434
/ \ / /
3535
25 20 25 25
3636
37-
(A) Remove (B) Remove (C) Remove
37+
(A) Pop (B) Pop (C) Pop
3838
```
3939

4040
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() {
5959
heap.Push(h, i)
6060
}
6161
for i := 1; i <= 10; i++ {
62-
fmt.Println(heap.Pop(h))
62+
fmt.Println(heap.Pop(h)) // Prints 10,9,8,...1
6363
}
64-
6564
}
6665

6766
func (m maxHeap) Len() int { return len(m) }
@@ -77,7 +76,7 @@ func (m *maxHeap) Pop() any {
7776
}
7877
```
7978

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.
8180

8281
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.
8382

heap/heap_sort_test.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,12 @@ TestSort tests solution(s) with the following signature and problem description:
1111
1212
func HeapSort(list []int) []int
1313
14-
Given a list of integers like {3,1,2}, return a sorted set like {1,2,3} using Heap Sort.
14+
Given a slice of integers, return a sorted slice using Heap Sort.
15+
16+
For example given {3,1,2}, return {1,2,3}.
17+
18+
Heap sort works by inserting all items to a heap and then popping them one by. As heap returns the minimum
19+
element with each pop the outcome is a sorted list of items..
1520
*/
1621
func TestSort(t *testing.T) {
1722
tests := []struct {

heap/k_closest_points_to_origin_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ TestKClosestPointToOrigin tests solution(s) with the following signature and pro
1111
func KClosestPointToOrigin(points [][]int, k int) [][]int
1212
1313
Given coordination of a point on an x,y axis and an integer k, return k closest points to the origin.
14+
15+
For example given {1,1}, {2,2}, {3,3}, {4,4} and k=2, return {1,1}, {2,2}.
1416
*/
1517
func TestKClosestPointToOrigin(t *testing.T) {
1618
tests := []struct {

heap/kth_largest_element_test.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ TestKthLargestElement tests solution(s) with the following signature and problem
77
88
func KthLargestElement(elements []int, k int) int
99
10-
Given an array of integers like {3,5,6,3,1,2,9} and k an integer like 3 return the kth
11-
largest element like 5.
10+
Given a slice of integers and an integer k, return the kth largest element.
11+
12+
For example given {3,5,6,3,1,2,9} and k=3 return 5, because largest integers are 9, 6, 5 and
13+
the 3rd largest is 5.
1214
*/
1315
func TestKthLargestElement(t *testing.T) {
1416
tests := []struct {

heap/median_in_a_stream_test.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ TestMedianInAStream tests solution(s) with the following signatures and problem
88
func newMedianKeeper() medianKeeper
99
func (m *medianKeeper) addNumber(num int)
1010
11-
Given a stream of integers like {1,2,3,4}, output the median after each input
12-
like {1, 1.5, 2, 2.5}.
11+
Given a stream of integers, return the median of the set after each input.
12+
13+
For example given {1,2,3,4}, return {1, 1.5, 2, 2.5} after each input respectively.
1314
*/
1415
func TestMedianInAStream(t *testing.T) {
1516
tests := []struct {

heap/merge_sorted_list_test.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ TestMergeSortedLists tests solution(s) with the following signature and problem
1111
1212
func MergeSortedLists(lists []*linkedlist.Node) *linkedlist.Node
1313
14-
Given multiple sorted linked lists like {1->2, 1->3->4, 4->5}, join them into one
15-
like 1->1->2->3->4->4->5.
14+
Given multiple sorted linked lists, join them together into one sorted linked list.
15+
16+
For example given {1->2, 1->3->4, 4->5} return 1->1->2->3->4->4->5.
1617
*/
1718
func TestMergeSortedLists(t *testing.T) {
1819
tests := []struct {

heap/regular_numbers_test.go

+11-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,17 @@ TestRegularNumbers tests solution(s) with the following signature and problem de
1212
1313
Regular numbers are numbers whose only prime divisors are 2, 3, and 5.
1414
For example 24 is a regular number because it can be factored into 2^3 * 3^1 * 5^0.
15-
Given a positive integer n, write a function that returns the first n regular numbers.
15+
16+
Given a positive integer n, return first n regular numbers.
17+
18+
For example given n=4:
19+
20+
1 = 2^0
21+
2 = 2^1
22+
3 = 3^1
23+
4 = 2^2
24+
25+
So the first 3 regular numbers are {1, 2, 3, 4}.
1626
*/
1727
func TestRegularNumbers(t *testing.T) {
1828
tests := []struct {

heap/sliding_max_test.go

+12-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,18 @@ TestMaxSlidingWindow tests solution(s) with the following signature and problem
1111
1212
func MaxSlidingWindow(numbers []int, k int) []int
1313
14-
Given a list of integers like {1, 4, 5, -2, 4, 6}, and a positive integer k like 3, return
15-
the maximum of each slice of the array when a window of length k is moved from left to the
16-
right in the array like {5, 5, 5, 6}.
14+
Given a slice of integers and a positive integer k, return the maximum of each sub-slice of the
15+
slice when a window of length k is moved from left to right and we can only see k elements that
16+
are in the window.
17+
18+
For example given {1,4,5,-2,4,6} and k=3, we will have the following windows:
19+
20+
{1,4,5} -> 5
21+
{4,5,-2} -> 5
22+
{5,-2,4} -> 5
23+
{-2,4,6} -> 6
24+
25+
So return {5,5,5,6}.
1726
*/
1827
func TestMaxSlidingWindow(t *testing.T) {
1928
tests := []struct {

0 commit comments

Comments
 (0)