mirror of
https://github.com/emirpasic/gods
synced 2024-11-08 13:10:26 +00:00
261 lines
7.0 KiB
Go
261 lines
7.0 KiB
Go
// Copyright (c) 2015, Emir Pasic. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package binaryheap
|
|
|
|
import (
|
|
"math/rand"
|
|
"testing"
|
|
)
|
|
|
|
func TestBinaryHeapPush(t *testing.T) {
|
|
heap := NewWithIntComparator()
|
|
|
|
if actualValue := heap.Empty(); actualValue != true {
|
|
t.Errorf("Got %v expected %v", actualValue, true)
|
|
}
|
|
|
|
heap.Push(3) // [3]
|
|
heap.Push(2) // [2,3]
|
|
heap.Push(1) // [1,3,2](2 swapped with 1, hence last)
|
|
|
|
if actualValue := heap.Values(); actualValue[0].(int) != 1 || actualValue[1].(int) != 3 || actualValue[2].(int) != 2 {
|
|
t.Errorf("Got %v expected %v", actualValue, "[1,2,3]")
|
|
}
|
|
if actualValue := heap.Empty(); actualValue != false {
|
|
t.Errorf("Got %v expected %v", actualValue, false)
|
|
}
|
|
if actualValue := heap.Size(); actualValue != 3 {
|
|
t.Errorf("Got %v expected %v", actualValue, 3)
|
|
}
|
|
if actualValue, ok := heap.Peek(); actualValue != 1 || !ok {
|
|
t.Errorf("Got %v expected %v", actualValue, 1)
|
|
}
|
|
}
|
|
|
|
func TestBinaryHeapPop(t *testing.T) {
|
|
heap := NewWithIntComparator()
|
|
|
|
if actualValue := heap.Empty(); actualValue != true {
|
|
t.Errorf("Got %v expected %v", actualValue, true)
|
|
}
|
|
|
|
heap.Push(3) // [3]
|
|
heap.Push(2) // [2,3]
|
|
heap.Push(1) // [1,3,2](2 swapped with 1, hence last)
|
|
heap.Pop() // [3,2]
|
|
|
|
if actualValue, ok := heap.Peek(); actualValue != 2 || !ok {
|
|
t.Errorf("Got %v expected %v", actualValue, 2)
|
|
}
|
|
if actualValue, ok := heap.Pop(); actualValue != 2 || !ok {
|
|
t.Errorf("Got %v expected %v", actualValue, 2)
|
|
}
|
|
if actualValue, ok := heap.Pop(); actualValue != 3 || !ok {
|
|
t.Errorf("Got %v expected %v", actualValue, 3)
|
|
}
|
|
if actualValue, ok := heap.Pop(); actualValue != nil || ok {
|
|
t.Errorf("Got %v expected %v", actualValue, nil)
|
|
}
|
|
if actualValue := heap.Empty(); actualValue != true {
|
|
t.Errorf("Got %v expected %v", actualValue, true)
|
|
}
|
|
if actualValue := heap.Values(); len(actualValue) != 0 {
|
|
t.Errorf("Got %v expected %v", actualValue, "[]")
|
|
}
|
|
}
|
|
|
|
func TestBinaryHeapRandom(t *testing.T) {
|
|
heap := NewWithIntComparator()
|
|
|
|
rand.Seed(3)
|
|
for i := 0; i < 10000; i++ {
|
|
r := int(rand.Int31n(30))
|
|
heap.Push(r)
|
|
}
|
|
|
|
prev, _ := heap.Pop()
|
|
for !heap.Empty() {
|
|
curr, _ := heap.Pop()
|
|
if prev.(int) > curr.(int) {
|
|
t.Errorf("Heap property invalidated. prev: %v current: %v", prev, curr)
|
|
}
|
|
prev = curr
|
|
}
|
|
}
|
|
|
|
func TestBinaryHeapIteratorOnEmpty(t *testing.T) {
|
|
heap := NewWithIntComparator()
|
|
it := heap.Iterator()
|
|
for it.Next() {
|
|
t.Errorf("Shouldn't iterate on empty heap")
|
|
}
|
|
}
|
|
|
|
func TestBinaryHeapIteratorNext(t *testing.T) {
|
|
heap := NewWithIntComparator()
|
|
heap.Push(3) // [3]
|
|
heap.Push(2) // [2,3]
|
|
heap.Push(1) // [1,3,2](2 swapped with 1, hence last)
|
|
|
|
it := heap.Iterator()
|
|
count := 0
|
|
for it.Next() {
|
|
count++
|
|
index := it.Index()
|
|
value := it.Value()
|
|
switch index {
|
|
case 0:
|
|
if actualValue, expectedValue := value, 1; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
case 1:
|
|
if actualValue, expectedValue := value, 3; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
case 2:
|
|
if actualValue, expectedValue := value, 2; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
default:
|
|
t.Errorf("Too many")
|
|
}
|
|
if actualValue, expectedValue := index, count-1; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
}
|
|
if actualValue, expectedValue := count, 3; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
}
|
|
|
|
func TestBinaryHeapIteratorPrev(t *testing.T) {
|
|
heap := NewWithIntComparator()
|
|
heap.Push(3) // [3]
|
|
heap.Push(2) // [2,3]
|
|
heap.Push(1) // [1,3,2](2 swapped with 1, hence last)
|
|
|
|
it := heap.Iterator()
|
|
for it.Next() {
|
|
}
|
|
count := 0
|
|
for it.Prev() {
|
|
count++
|
|
index := it.Index()
|
|
value := it.Value()
|
|
switch index {
|
|
case 0:
|
|
if actualValue, expectedValue := value, 1; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
case 1:
|
|
if actualValue, expectedValue := value, 3; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
case 2:
|
|
if actualValue, expectedValue := value, 2; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
default:
|
|
t.Errorf("Too many")
|
|
}
|
|
if actualValue, expectedValue := index, 3-count; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
}
|
|
if actualValue, expectedValue := count, 3; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
}
|
|
|
|
func TestBinaryHeapIteratorBegin(t *testing.T) {
|
|
heap := NewWithIntComparator()
|
|
it := heap.Iterator()
|
|
it.Begin()
|
|
heap.Push(2)
|
|
heap.Push(3)
|
|
heap.Push(1)
|
|
for it.Next() {
|
|
}
|
|
it.Begin()
|
|
it.Next()
|
|
if index, value := it.Index(), it.Value(); index != 0 || value != 1 {
|
|
t.Errorf("Got %v,%v expected %v,%v", index, value, 0, 1)
|
|
}
|
|
}
|
|
|
|
func TestListIteratorEnd(t *testing.T) {
|
|
heap := NewWithIntComparator()
|
|
it := heap.Iterator()
|
|
|
|
if index := it.Index(); index != -1 {
|
|
t.Errorf("Got %v expected %v", index, -1)
|
|
}
|
|
|
|
it.End()
|
|
if index := it.Index(); index != 0 {
|
|
t.Errorf("Got %v expected %v", index, 0)
|
|
}
|
|
|
|
heap.Push(3) // [3]
|
|
heap.Push(2) // [2,3]
|
|
heap.Push(1) // [1,3,2](2 swapped with 1, hence last)
|
|
it.End()
|
|
if index := it.Index(); index != heap.Size() {
|
|
t.Errorf("Got %v expected %v", index, heap.Size())
|
|
}
|
|
|
|
it.Prev()
|
|
if index, value := it.Index(), it.Value(); index != heap.Size()-1 || value != 2 {
|
|
t.Errorf("Got %v,%v expected %v,%v", index, value, heap.Size()-1, 2)
|
|
}
|
|
}
|
|
|
|
func TestStackIteratorFirst(t *testing.T) {
|
|
heap := NewWithIntComparator()
|
|
it := heap.Iterator()
|
|
if actualValue, expectedValue := it.First(), false; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
heap.Push(3) // [3]
|
|
heap.Push(2) // [2,3]
|
|
heap.Push(1) // [1,3,2](2 swapped with 1, hence last)
|
|
if actualValue, expectedValue := it.First(), true; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
if index, value := it.Index(), it.Value(); index != 0 || value != 1 {
|
|
t.Errorf("Got %v,%v expected %v,%v", index, value, 0, 1)
|
|
}
|
|
}
|
|
|
|
func TestBinaryHeapIteratorLast(t *testing.T) {
|
|
tree := NewWithIntComparator()
|
|
it := tree.Iterator()
|
|
if actualValue, expectedValue := it.Last(), false; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
tree.Push(2)
|
|
tree.Push(3)
|
|
tree.Push(1) // [1,3,2](2 swapped with 1, hence last)
|
|
if actualValue, expectedValue := it.Last(), true; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
if index, value := it.Index(), it.Value(); index != 2 || value != 2 {
|
|
t.Errorf("Got %v,%v expected %v,%v", index, value, 2, 2)
|
|
}
|
|
}
|
|
|
|
func BenchmarkBinaryHeap(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
heap := NewWithIntComparator()
|
|
for n := 0; n < 1000; n++ {
|
|
heap.Push(i)
|
|
}
|
|
for !heap.Empty() {
|
|
heap.Pop()
|
|
}
|
|
}
|
|
|
|
}
|