forked from wangzheng0822/algo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add heap insert and delete in golang
- Loading branch information
Showing
1 changed file
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
package heap | ||
|
||
import "fmt" | ||
|
||
type Heap struct { | ||
a []int | ||
n int | ||
count int | ||
} | ||
|
||
//init heap | ||
func NewHeap(capacity int) *Heap { | ||
heap := &Heap{} | ||
heap.n = capacity | ||
heap.a = make([]int, capacity+1) | ||
heap.count = 0 | ||
return heap | ||
} | ||
|
||
//top-max heap -> heapify from down to up | ||
func (heap *Heap) insert(data int) { | ||
//defensive | ||
if heap.count == heap.n { | ||
return | ||
} | ||
|
||
heap.count++ | ||
heap.a[heap.count] = data | ||
|
||
//compare with parent node | ||
i := heap.count | ||
parent := i / 2 | ||
for parent > 0 && heap.a[parent] < heap.a[i] { | ||
swap(heap.a, parent, i) | ||
i = parent | ||
parent = i / 2 | ||
} | ||
} | ||
|
||
//heapfify from up to down | ||
func (heap *Heap) removeMax() { | ||
|
||
//defensive | ||
if heap.count == 0 { | ||
return | ||
} | ||
|
||
//swap max and last | ||
swap(heap.a, 1, heap.count) | ||
heap.count-- | ||
|
||
//comapre with left and right | ||
for i := 1; i <= heap.count/2; { | ||
|
||
maxIndex := i | ||
if heap.a[i] < heap.a[i*2] { | ||
maxIndex = i * 2 | ||
} | ||
|
||
if i*2+1 <= heap.count && heap.a[maxIndex] < heap.a[i*2+1] { | ||
maxIndex = i*2 + 1 | ||
} | ||
|
||
if maxIndex == i { | ||
break | ||
} | ||
|
||
swap(heap.a, i, maxIndex) | ||
i = maxIndex | ||
} | ||
|
||
} | ||
|
||
//swap two elements | ||
func swap(a []int, i int, j int) { | ||
tmp := a[i] | ||
a[i] = a[j] | ||
a[j] = tmp | ||
} |