swim icon indicating copy to clipboard operation
swim copied to clipboard

[heap] need test cases for update function

Open junbeomlee opened this issue 6 years ago • 0 comments

Subject heap.go heap_test.go

Detail need test cases for update function

func (pq *PriorityQueue) update(item *Item, value interface{}, priority int) {
	item.value = value
	item.priority = priority
	heap.Fix(pq, item.index)
}

junbeomlee avatar Dec 05 '18 07:12 junbeomlee