2015-03-05 03:16:28 +00:00
|
|
|
/*
|
2015-03-06 16:10:34 +00:00
|
|
|
Copyright (c) 2015, Emir Pasic
|
|
|
|
All rights reserved.
|
2015-03-05 03:16:28 +00:00
|
|
|
|
2015-03-06 16:10:34 +00:00
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
2015-03-05 03:16:28 +00:00
|
|
|
|
2015-03-06 16:10:34 +00:00
|
|
|
* Redistributions of source code must retain the above copyright notice, this
|
|
|
|
list of conditions and the following disclaimer.
|
2015-03-05 03:16:28 +00:00
|
|
|
|
2015-03-06 16:10:34 +00:00
|
|
|
* Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer in the documentation
|
|
|
|
and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2015-03-05 03:16:28 +00:00
|
|
|
*/
|
|
|
|
|
2015-03-04 18:38:46 +00:00
|
|
|
package redblacktree
|
|
|
|
|
|
|
|
import (
|
2015-03-05 13:37:28 +00:00
|
|
|
"fmt"
|
2015-03-04 18:38:46 +00:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2016-06-24 18:23:54 +00:00
|
|
|
func TestRedBlackTreePut(t *testing.T) {
|
2015-03-04 18:38:46 +00:00
|
|
|
tree := NewWithIntComparator()
|
2015-03-04 19:20:48 +00:00
|
|
|
tree.Put(5, "e")
|
2015-03-04 20:13:12 +00:00
|
|
|
tree.Put(6, "f")
|
|
|
|
tree.Put(7, "g")
|
2015-03-04 18:38:46 +00:00
|
|
|
tree.Put(3, "c")
|
|
|
|
tree.Put(4, "d")
|
|
|
|
tree.Put(1, "x")
|
|
|
|
tree.Put(2, "b")
|
2015-03-04 18:46:09 +00:00
|
|
|
tree.Put(1, "a") //overwrite
|
2015-03-04 18:38:46 +00:00
|
|
|
|
2015-03-05 04:20:39 +00:00
|
|
|
if actualValue := tree.Size(); actualValue != 7 {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, 7)
|
|
|
|
}
|
2016-06-12 13:04:33 +00:00
|
|
|
if actualValue, expectedValue := fmt.Sprintf("%d%d%d%d%d%d%d", tree.Keys()...), "1234567"; actualValue != expectedValue {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
2015-03-05 13:37:28 +00:00
|
|
|
}
|
2016-06-12 13:04:33 +00:00
|
|
|
if actualValue, expectedValue := fmt.Sprintf("%s%s%s%s%s%s%s", tree.Values()...), "abcdefg"; actualValue != expectedValue {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
2015-03-05 13:37:28 +00:00
|
|
|
}
|
|
|
|
|
2015-03-04 20:13:12 +00:00
|
|
|
tests1 := [][]interface{}{
|
|
|
|
{1, "a", true},
|
|
|
|
{2, "b", true},
|
|
|
|
{3, "c", true},
|
|
|
|
{4, "d", true},
|
|
|
|
{5, "e", true},
|
|
|
|
{6, "f", true},
|
|
|
|
{7, "g", true},
|
|
|
|
{8, nil, false},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests1 {
|
|
|
|
// retrievals
|
|
|
|
actualValue, actualFound := tree.Get(test[0])
|
|
|
|
if actualValue != test[1] || actualFound != test[2] {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, test[1])
|
|
|
|
}
|
|
|
|
}
|
2016-06-24 18:23:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestRedBlackTreeRemove(t *testing.T) {
|
|
|
|
tree := NewWithIntComparator()
|
|
|
|
tree.Put(5, "e")
|
|
|
|
tree.Put(6, "f")
|
|
|
|
tree.Put(7, "g")
|
|
|
|
tree.Put(3, "c")
|
|
|
|
tree.Put(4, "d")
|
|
|
|
tree.Put(1, "x")
|
|
|
|
tree.Put(2, "b")
|
|
|
|
tree.Put(1, "a") //overwrite
|
2015-03-04 20:13:12 +00:00
|
|
|
|
|
|
|
tree.Remove(5)
|
|
|
|
tree.Remove(6)
|
|
|
|
tree.Remove(7)
|
|
|
|
tree.Remove(8)
|
2015-03-05 04:20:39 +00:00
|
|
|
tree.Remove(5)
|
|
|
|
|
2016-06-12 13:04:33 +00:00
|
|
|
if actualValue, expectedValue := fmt.Sprintf("%d%d%d%d", tree.Keys()...), "1234"; actualValue != expectedValue {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
2015-03-05 13:37:28 +00:00
|
|
|
}
|
2016-06-12 13:04:33 +00:00
|
|
|
if actualValue, expectedValue := fmt.Sprintf("%s%s%s%s", tree.Values()...), "abcd"; actualValue != expectedValue {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
2015-03-05 13:37:28 +00:00
|
|
|
}
|
2016-06-12 22:52:16 +00:00
|
|
|
if actualValue, expectedValue := fmt.Sprintf("%s%s%s%s", tree.Values()...), "abcd"; actualValue != expectedValue {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
|
|
}
|
2015-03-05 04:20:39 +00:00
|
|
|
if actualValue := tree.Size(); actualValue != 4 {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, 7)
|
|
|
|
}
|
2015-03-04 20:13:12 +00:00
|
|
|
|
|
|
|
tests2 := [][]interface{}{
|
2015-03-04 18:38:46 +00:00
|
|
|
{1, "a", true},
|
|
|
|
{2, "b", true},
|
|
|
|
{3, "c", true},
|
|
|
|
{4, "d", true},
|
|
|
|
{5, nil, false},
|
2015-03-04 20:13:12 +00:00
|
|
|
{6, nil, false},
|
|
|
|
{7, nil, false},
|
|
|
|
{8, nil, false},
|
2015-03-04 18:38:46 +00:00
|
|
|
}
|
|
|
|
|
2015-03-04 20:13:12 +00:00
|
|
|
for _, test := range tests2 {
|
2015-03-04 18:38:46 +00:00
|
|
|
actualValue, actualFound := tree.Get(test[0])
|
|
|
|
if actualValue != test[1] || actualFound != test[2] {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, test[1])
|
|
|
|
}
|
|
|
|
}
|
2015-03-04 20:13:12 +00:00
|
|
|
|
2015-03-05 13:37:28 +00:00
|
|
|
tree.Remove(1)
|
|
|
|
tree.Remove(4)
|
|
|
|
tree.Remove(2)
|
|
|
|
tree.Remove(3)
|
|
|
|
tree.Remove(2)
|
|
|
|
tree.Remove(2)
|
|
|
|
|
2016-06-12 13:04:33 +00:00
|
|
|
if actualValue, expectedValue := fmt.Sprintf("%s", tree.Keys()), "[]"; actualValue != expectedValue {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
2015-03-05 13:37:28 +00:00
|
|
|
}
|
2016-06-12 13:04:33 +00:00
|
|
|
if actualValue, expectedValue := fmt.Sprintf("%s", tree.Values()), "[]"; actualValue != expectedValue {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
2015-03-05 13:37:28 +00:00
|
|
|
}
|
2016-06-24 18:23:54 +00:00
|
|
|
if empty, size := tree.Empty(), tree.Size(); empty != true || size != -0 {
|
|
|
|
t.Errorf("Got %v expected %v", empty, true)
|
2015-03-05 13:37:28 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 18:23:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestRedBlackTreeLeftAndRight(t *testing.T) {
|
|
|
|
tree := NewWithIntComparator()
|
|
|
|
|
|
|
|
if actualValue := tree.Left(); actualValue != nil {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, nil)
|
|
|
|
}
|
|
|
|
if actualValue := tree.Right(); actualValue != nil {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, nil)
|
2015-03-05 13:37:28 +00:00
|
|
|
}
|
|
|
|
|
2015-03-05 14:05:12 +00:00
|
|
|
tree.Put(1, "a")
|
2016-06-24 18:23:54 +00:00
|
|
|
tree.Put(5, "e")
|
|
|
|
tree.Put(6, "f")
|
|
|
|
tree.Put(7, "g")
|
|
|
|
tree.Put(3, "c")
|
|
|
|
tree.Put(4, "d")
|
|
|
|
tree.Put(1, "x") // overwrite
|
2015-03-05 14:05:12 +00:00
|
|
|
tree.Put(2, "b")
|
|
|
|
|
2016-06-24 18:23:54 +00:00
|
|
|
if actualValue, expectedValue := fmt.Sprintf("%d", tree.Left().Key), "1"; actualValue != expectedValue {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
|
|
}
|
|
|
|
if actualValue, expectedValue := fmt.Sprintf("%s", tree.Left().Value), "x"; actualValue != expectedValue {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
2015-03-05 14:05:12 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 18:23:54 +00:00
|
|
|
if actualValue, expectedValue := fmt.Sprintf("%d", tree.Right().Key), "7"; actualValue != expectedValue {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
|
|
}
|
|
|
|
if actualValue, expectedValue := fmt.Sprintf("%s", tree.Right().Value), "g"; actualValue != expectedValue {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
2016-06-12 22:52:16 +00:00
|
|
|
}
|
2016-06-24 18:23:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestRedBlackTreeCeilingAndFloor(t *testing.T) {
|
|
|
|
tree := NewWithIntComparator()
|
2016-06-12 22:52:16 +00:00
|
|
|
|
2016-06-24 18:23:54 +00:00
|
|
|
if node, found := tree.Floor(0); node != nil || found {
|
|
|
|
t.Errorf("Got %v expected %v", node, "<nil>")
|
|
|
|
}
|
|
|
|
if node, found := tree.Ceiling(0); node != nil || found {
|
|
|
|
t.Errorf("Got %v expected %v", node, "<nil>")
|
2016-06-12 22:52:16 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 18:23:54 +00:00
|
|
|
tree.Put(5, "e")
|
|
|
|
tree.Put(6, "f")
|
|
|
|
tree.Put(7, "g")
|
|
|
|
tree.Put(3, "c")
|
|
|
|
tree.Put(4, "d")
|
|
|
|
tree.Put(1, "x")
|
|
|
|
tree.Put(2, "b")
|
|
|
|
|
|
|
|
if node, found := tree.Floor(4); node.Key != 4 || !found {
|
|
|
|
t.Errorf("Got %v expected %v", node.Key, 4)
|
|
|
|
}
|
|
|
|
if node, found := tree.Floor(0); node != nil || found {
|
2016-06-12 22:52:16 +00:00
|
|
|
t.Errorf("Got %v expected %v", node, "<nil>")
|
|
|
|
}
|
|
|
|
|
2016-06-24 18:23:54 +00:00
|
|
|
if node, found := tree.Ceiling(4); node.Key != 4 || !found {
|
|
|
|
t.Errorf("Got %v expected %v", node.Key, 4)
|
|
|
|
}
|
|
|
|
if node, found := tree.Ceiling(8); node != nil || found {
|
2016-06-12 22:52:16 +00:00
|
|
|
t.Errorf("Got %v expected %v", node, "<nil>")
|
|
|
|
}
|
2015-03-04 18:38:46 +00:00
|
|
|
}
|
2015-03-07 16:09:47 +00:00
|
|
|
|
2016-06-24 18:23:54 +00:00
|
|
|
func TestRedBlackTreeIterator1(t *testing.T) {
|
2016-06-22 17:47:24 +00:00
|
|
|
tree := NewWithIntComparator()
|
|
|
|
tree.Put(5, "e")
|
|
|
|
tree.Put(6, "f")
|
|
|
|
tree.Put(7, "g")
|
|
|
|
tree.Put(3, "c")
|
|
|
|
tree.Put(4, "d")
|
|
|
|
tree.Put(1, "x")
|
|
|
|
tree.Put(2, "b")
|
|
|
|
tree.Put(1, "a") //overwrite
|
|
|
|
|
|
|
|
it := tree.Iterator()
|
|
|
|
count := 0
|
|
|
|
for it.Next() {
|
2016-06-24 19:52:16 +00:00
|
|
|
count++
|
2016-06-22 17:59:08 +00:00
|
|
|
index := it.Key()
|
2016-06-22 17:47:24 +00:00
|
|
|
switch index {
|
|
|
|
case count:
|
|
|
|
if actualValue, expectedValue := index, count; actualValue != expectedValue {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
if actualValue, expectedValue := index, count; actualValue != expectedValue {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if actualValue, expectedValue := count, 7; actualValue != expectedValue {
|
|
|
|
t.Errorf("Size different. Got %v expected %v", actualValue, expectedValue)
|
|
|
|
}
|
2016-06-24 18:23:54 +00:00
|
|
|
}
|
2016-06-22 17:47:24 +00:00
|
|
|
|
2016-06-24 18:23:54 +00:00
|
|
|
func TestRedBlackTreeIterator2(t *testing.T) {
|
|
|
|
tree := NewWithIntComparator()
|
2016-06-22 17:47:24 +00:00
|
|
|
tree.Put(3, "c")
|
|
|
|
tree.Put(1, "a")
|
|
|
|
tree.Put(2, "b")
|
2016-06-24 18:23:54 +00:00
|
|
|
it := tree.Iterator()
|
|
|
|
count := 0
|
2016-06-22 17:47:24 +00:00
|
|
|
for it.Next() {
|
2016-06-24 19:52:16 +00:00
|
|
|
count++
|
2016-06-22 17:59:08 +00:00
|
|
|
index := it.Key()
|
2016-06-22 17:47:24 +00:00
|
|
|
switch index {
|
|
|
|
case count:
|
|
|
|
if actualValue, expectedValue := index, count; actualValue != expectedValue {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
if actualValue, expectedValue := index, count; actualValue != expectedValue {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if actualValue, expectedValue := count, 3; actualValue != expectedValue {
|
|
|
|
t.Errorf("Size different. Got %v expected %v", actualValue, expectedValue)
|
|
|
|
}
|
2016-06-24 18:23:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestRedBlackTreeIterator3(t *testing.T) {
|
|
|
|
tree := NewWithIntComparator()
|
|
|
|
|
|
|
|
it := tree.Iterator()
|
|
|
|
for it.Next() {
|
|
|
|
t.Errorf("Shouldn't iterate on empty stack")
|
|
|
|
}
|
2016-06-22 17:47:24 +00:00
|
|
|
|
|
|
|
tree.Put(1, "a")
|
2016-06-24 18:23:54 +00:00
|
|
|
|
2016-06-22 17:47:24 +00:00
|
|
|
it = tree.Iterator()
|
2016-06-24 18:23:54 +00:00
|
|
|
count := 0
|
2016-06-22 17:47:24 +00:00
|
|
|
for it.Next() {
|
2016-06-24 19:52:16 +00:00
|
|
|
count++
|
2016-06-22 17:59:08 +00:00
|
|
|
index := it.Key()
|
2016-06-22 17:47:24 +00:00
|
|
|
switch index {
|
|
|
|
case count:
|
|
|
|
if actualValue, expectedValue := index, count; actualValue != expectedValue {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
if actualValue, expectedValue := index, count; actualValue != expectedValue {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if actualValue, expectedValue := count, 1; actualValue != expectedValue {
|
|
|
|
t.Errorf("Size different. Got %v expected %v", actualValue, expectedValue)
|
|
|
|
}
|
2016-06-24 18:23:54 +00:00
|
|
|
}
|
2016-06-22 17:47:24 +00:00
|
|
|
|
2016-06-24 18:23:54 +00:00
|
|
|
func TestRedBlackTreeIterator4(t *testing.T) {
|
|
|
|
tree := NewWithIntComparator()
|
2016-06-22 17:47:24 +00:00
|
|
|
tree.Put(13, 5)
|
|
|
|
tree.Put(8, 3)
|
|
|
|
tree.Put(17, 7)
|
|
|
|
tree.Put(1, 1)
|
|
|
|
tree.Put(11, 4)
|
|
|
|
tree.Put(15, 6)
|
|
|
|
tree.Put(25, 9)
|
|
|
|
tree.Put(6, 2)
|
|
|
|
tree.Put(22, 8)
|
|
|
|
tree.Put(27, 10)
|
2016-06-24 18:23:54 +00:00
|
|
|
|
|
|
|
it := tree.Iterator()
|
|
|
|
count := 0
|
2016-06-22 17:47:24 +00:00
|
|
|
for it.Next() {
|
2016-06-24 19:52:16 +00:00
|
|
|
count++
|
2016-06-22 17:47:24 +00:00
|
|
|
value := it.Value()
|
|
|
|
switch value {
|
|
|
|
case count:
|
|
|
|
if actualValue, expectedValue := value, count; actualValue != expectedValue {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
if actualValue, expectedValue := value, count; actualValue != expectedValue {
|
|
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if actualValue, expectedValue := count, 10; actualValue != expectedValue {
|
|
|
|
t.Errorf("Size different. Got %v expected %v", actualValue, expectedValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-07 16:09:47 +00:00
|
|
|
func BenchmarkRedBlackTree(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
tree := NewWithIntComparator()
|
|
|
|
for n := 0; n < 1000; n++ {
|
|
|
|
tree.Put(n, n)
|
|
|
|
}
|
|
|
|
for n := 0; n < 1000; n++ {
|
|
|
|
tree.Remove(n)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|