-
Notifications
You must be signed in to change notification settings - Fork 4
/
14_gods_singlylinkedlist.go
52 lines (44 loc) · 1.17 KB
/
14_gods_singlylinkedlist.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Seriál "Programovací jazyk Go"
// https://www.root.cz/serialy/programovaci-jazyk-go/
//
// Devátá část
// Užitečné balíčky pro každodenní použití jazyka Go
// https://www.root.cz/clanky/uzitecne-balicky-pro-kazdodenni-pouziti-jazyka-go/
//
// Repositář:
// https://github.com/tisnik/go-root/
//
// Seznam demonstračních příkladů z deváté části:
// https://github.com/tisnik/go-root/blob/master/article_09/README.md
//
// Demonstrační příklad číslo 14:
// Datová struktura singlylinkedlist z knihovny GoDS.
//
// Dokumentace ve stylu "literate programming":
// https://tisnik.github.io/go-root/article_09/14_gods_singlylinkedlist.html
package main
import (
"fmt"
sll "github.com/emirpasic/gods/lists/singlylinkedlist"
)
func printList(list *sll.List) {
iterator := list.Iterator()
for iterator.Next() {
index, value := iterator.Index(), iterator.Value()
fmt.Printf("item #%d == %s\n", index, value)
}
fmt.Println()
}
func main() {
list := sll.New()
list.Add("a")
list.Add("c", "b")
printList(list)
list.Swap(0, 1)
list.Swap(1, 2)
printList(list)
list.Remove(2)
printList(list)
list.Remove(1)
printList(list)
}