mirror of
https://github.com/emirpasic/gods
synced 2024-11-06 15:20:25 +00:00
277 lines
7.6 KiB
Go
277 lines
7.6 KiB
Go
/*
|
|
Copyright (c) 2015, Emir Pasic
|
|
All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
* Redistributions of source code must retain the above copyright notice, this
|
|
list of conditions and the following disclaimer.
|
|
|
|
* 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.
|
|
*/
|
|
|
|
package singlylinkedlist
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/emirpasic/gods/utils"
|
|
"testing"
|
|
)
|
|
|
|
func TestSinglyLinkedList(t *testing.T) {
|
|
|
|
list := New()
|
|
|
|
list.Sort(utils.StringComparator)
|
|
|
|
list.Add("e", "f", "g", "a", "b", "c", "d")
|
|
|
|
list.Sort(utils.StringComparator)
|
|
for i := 1; i < list.Size(); i++ {
|
|
a, _ := list.Get(i - 1)
|
|
b, _ := list.Get(i)
|
|
if a.(string) > b.(string) {
|
|
t.Errorf("Not sorted! %s > %s", a, b)
|
|
}
|
|
}
|
|
|
|
list.Clear()
|
|
|
|
if actualValue := list.Empty(); actualValue != true {
|
|
t.Errorf("Got %v expected %v", actualValue, true)
|
|
}
|
|
|
|
if actualValue := list.Size(); actualValue != 0 {
|
|
t.Errorf("Got %v expected %v", actualValue, 0)
|
|
}
|
|
|
|
list.Add("a")
|
|
list.Add("b", "c")
|
|
|
|
if actualValue := list.Empty(); actualValue != false {
|
|
t.Errorf("Got %v expected %v", actualValue, false)
|
|
}
|
|
|
|
if actualValue := list.Size(); actualValue != 3 {
|
|
t.Errorf("Got %v expected %v", actualValue, 3)
|
|
}
|
|
|
|
if actualValue, ok := list.Get(2); actualValue != "c" || !ok {
|
|
t.Errorf("Got %v expected %v", actualValue, "c")
|
|
}
|
|
|
|
list.Swap(0, 2)
|
|
list.Swap(0, 2)
|
|
list.Swap(0, 1)
|
|
|
|
if actualValue, ok := list.Get(0); actualValue != "b" || !ok {
|
|
t.Errorf("Got %v expected %v", actualValue, "c")
|
|
}
|
|
|
|
list.Remove(2)
|
|
|
|
if actualValue, ok := list.Get(2); actualValue != nil || ok {
|
|
t.Errorf("Got %v expected %v", actualValue, nil)
|
|
}
|
|
|
|
list.Remove(1)
|
|
list.Remove(0)
|
|
|
|
if actualValue := list.Empty(); actualValue != true {
|
|
t.Errorf("Got %v expected %v", actualValue, true)
|
|
}
|
|
|
|
if actualValue := list.Size(); actualValue != 0 {
|
|
t.Errorf("Got %v expected %v", actualValue, 0)
|
|
}
|
|
|
|
list.Add("a", "b", "c")
|
|
|
|
if actualValue := list.Contains("a", "b", "c"); actualValue != true {
|
|
t.Errorf("Got %v expected %v", actualValue, true)
|
|
}
|
|
|
|
if actualValue := list.Contains("a", "b", "c", "d"); actualValue != false {
|
|
t.Errorf("Got %v expected %v", actualValue, false)
|
|
}
|
|
|
|
list.Clear()
|
|
|
|
if actualValue := list.Contains("a"); actualValue != false {
|
|
t.Errorf("Got %v expected %v", actualValue, false)
|
|
}
|
|
|
|
if actualValue, ok := list.Get(0); actualValue != nil || ok {
|
|
t.Errorf("Got %v expected %v", actualValue, false)
|
|
}
|
|
|
|
if actualValue := list.Empty(); actualValue != true {
|
|
t.Errorf("Got %v expected %v", actualValue, true)
|
|
}
|
|
|
|
list.Insert(0, "h")
|
|
list.Insert(0, "e")
|
|
list.Insert(1, "f")
|
|
list.Insert(2, "g")
|
|
list.Insert(4, "i")
|
|
list.Insert(0, "a", "b")
|
|
list.Insert(list.Size(), "j", "k")
|
|
list.Insert(2, "c", "d")
|
|
|
|
if actualValue, expectedValue := fmt.Sprintf("%s%s%s%s%s%s%s%s%s%s%s", list.Values()...), "abcdefghijk"; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
}
|
|
|
|
func TestSinglyLinkedListEnumerableAndIterator(t *testing.T) {
|
|
list := New()
|
|
list.Add("a", "b", "c")
|
|
|
|
// Each
|
|
list.Each(func(index int, value interface{}) {
|
|
switch index {
|
|
case 0:
|
|
if actualValue, expectedValue := value, "a"; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
case 1:
|
|
if actualValue, expectedValue := value, "b"; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
case 2:
|
|
if actualValue, expectedValue := value, "c"; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
default:
|
|
t.Errorf("Too many")
|
|
}
|
|
})
|
|
|
|
// Map
|
|
mappedList := list.Map(func(index int, value interface{}) interface{} {
|
|
return "mapped: " + value.(string)
|
|
})
|
|
if actualValue, _ := mappedList.Get(0); actualValue != "mapped: a" {
|
|
t.Errorf("Got %v expected %v", actualValue, "mapped: a")
|
|
}
|
|
if actualValue, _ := mappedList.Get(1); actualValue != "mapped: b" {
|
|
t.Errorf("Got %v expected %v", actualValue, "mapped: b")
|
|
}
|
|
if actualValue, _ := mappedList.Get(2); actualValue != "mapped: c" {
|
|
t.Errorf("Got %v expected %v", actualValue, "mapped: c")
|
|
}
|
|
if mappedList.Size() != 3 {
|
|
t.Errorf("Got %v expected %v", mappedList.Size(), 3)
|
|
}
|
|
|
|
// Select
|
|
selectedList := list.Select(func(index int, value interface{}) bool {
|
|
return value.(string) >= "a" && value.(string) <= "b"
|
|
})
|
|
if actualValue, _ := selectedList.Get(0); actualValue != "a" {
|
|
t.Errorf("Got %v expected %v", actualValue, "value: a")
|
|
}
|
|
if actualValue, _ := selectedList.Get(1); actualValue != "b" {
|
|
t.Errorf("Got %v expected %v", actualValue, "value: b")
|
|
}
|
|
if selectedList.Size() != 2 {
|
|
t.Errorf("Got %v expected %v", selectedList.Size(), 3)
|
|
}
|
|
|
|
// Any
|
|
any := list.Any(func(index int, value interface{}) bool {
|
|
return value.(string) == "c"
|
|
})
|
|
if any != true {
|
|
t.Errorf("Got %v expected %v", any, true)
|
|
}
|
|
any = list.Any(func(index int, value interface{}) bool {
|
|
return value.(string) == "x"
|
|
})
|
|
if any != false {
|
|
t.Errorf("Got %v expected %v", any, false)
|
|
}
|
|
|
|
// All
|
|
all := list.All(func(index int, value interface{}) bool {
|
|
return value.(string) >= "a" && value.(string) <= "c"
|
|
})
|
|
if all != true {
|
|
t.Errorf("Got %v expected %v", all, true)
|
|
}
|
|
all = list.All(func(index int, value interface{}) bool {
|
|
return value.(string) >= "a" && value.(string) <= "b"
|
|
})
|
|
if all != false {
|
|
t.Errorf("Got %v expected %v", all, false)
|
|
}
|
|
|
|
// Find
|
|
foundIndex, foundValue := list.Find(func(index int, value interface{}) bool {
|
|
return value.(string) == "c"
|
|
})
|
|
if foundValue != "c" || foundIndex != 2 {
|
|
t.Errorf("Got %v at %v expected %v at %v", foundValue, foundIndex, "c", 2)
|
|
}
|
|
foundIndex, foundValue = list.Find(func(index int, value interface{}) bool {
|
|
return value.(string) == "x"
|
|
})
|
|
if foundValue != nil || foundIndex != -1 {
|
|
t.Errorf("Got %v at %v expected %v at %v", foundValue, foundIndex, nil, nil)
|
|
}
|
|
|
|
// Iterator
|
|
it := list.Iterator()
|
|
for it.Next() {
|
|
index := it.Index()
|
|
value := it.Value()
|
|
switch index {
|
|
case 0:
|
|
if actualValue, expectedValue := value, "a"; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
case 1:
|
|
if actualValue, expectedValue := value, "b"; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
case 2:
|
|
if actualValue, expectedValue := value, "c"; actualValue != expectedValue {
|
|
t.Errorf("Got %v expected %v", actualValue, expectedValue)
|
|
}
|
|
default:
|
|
t.Errorf("Too many")
|
|
}
|
|
}
|
|
list.Clear()
|
|
it = list.Iterator()
|
|
for it.Next() {
|
|
t.Errorf("Shouldn't iterate on empty list")
|
|
}
|
|
}
|
|
|
|
func BenchmarkSinglyLinkedList(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
list := New()
|
|
for n := 0; n < 1000; n++ {
|
|
list.Add(i)
|
|
}
|
|
for !list.Empty() {
|
|
list.Remove(0)
|
|
}
|
|
}
|
|
}
|