-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlinked_list.go
More file actions
173 lines (135 loc) · 2.76 KB
/
linked_list.go
File metadata and controls
173 lines (135 loc) · 2.76 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
package linkedlist
import (
"errors"
"fmt"
)
// LinkedList is a linked list.
type LinkedList[T any] struct {
head *Node[T]
tail *Node[T]
nSize uint
cmp func(T, T) int
}
// NewLinkedList returns a new linked list.
func NewLinkedList[T any](cmp func(T, T) int) *LinkedList[T] {
return &LinkedList[T]{cmp: cmp}
}
// Append adds a new node to the end of the list.
func (ll *LinkedList[T]) Append(value T) {
newNode := NewNode(value)
ll.nSize++
if ll.head == nil {
ll.head = newNode
ll.tail = newNode
return
}
newNode.prev = ll.tail
ll.tail.next = newNode
ll.tail = ll.tail.next
}
// PushHead adds a new node to the head of the list.
func (ll *LinkedList[T]) PushHead(value T) {
newNode := NewNode(value)
ll.nSize++
if ll.head == nil {
ll.head = newNode
ll.tail = newNode
return
}
newNode.next = ll.head
ll.head.prev = newNode
ll.head = newNode
}
// InsertAt adds a new node to the given position
func (ll *LinkedList[T]) InsertAt(pos int, value T) error {
newNode := NewNode(value)
if pos < 1 || uint(pos) > ll.nSize {
return errors.New("invalid position")
}
currPos := 1
currNode := ll.head
if pos == 1 {
ll.PushHead(value)
return nil
}
for currPos < pos {
currNode = currNode.next
currPos++
}
newNode.prev = currNode.prev
newNode.next = currNode
currNode.prev.next = newNode
currNode.prev = newNode
ll.nSize++
return nil
}
// Pop removes the last node from the list.
func (ll *LinkedList[T]) Pop() {
if ll.head == nil {
return
}
ll.nSize--
if ll.head == ll.tail {
ll.head = nil
ll.tail = nil
return
}
prev := ll.tail.prev
prev.next = nil
ll.tail = prev
}
// PopHead removes the first node from the list.
func (ll *LinkedList[T]) PopHead() {
if ll.head == nil {
return
}
ll.nSize--
if ll.head == ll.tail {
ll.head = nil
ll.tail = nil
return
}
next := ll.head.next
next.prev = nil
ll.head = next
}
// Find returns the node with the given value.
func (ll *LinkedList[T]) Find(value T) *Node[T] {
curr := ll.head
for curr != nil {
if ll.cmp(curr.value, value) == 0 {
return curr
}
curr = curr.next
}
return nil
}
// String returns a string representation of the list.
func (ll *LinkedList[T]) String() string {
var s string
curr := ll.head
for curr != nil {
s += fmt.Sprintf("[%v]", curr.value)
if curr.next != nil {
s += `-`
}
curr = curr.next
}
return s
}
// Head returns the head node of the list.
func (ll *LinkedList[T]) Head() *Node[T] {
return ll.head
}
// Tail returns the tail node of the list.
func (ll *LinkedList[T]) Tail() *Node[T] {
return ll.tail
}
// Size returns the size of the list.
func (ll *LinkedList[T]) Size() uint {
return ll.nSize
}
// IsEmpty returns true if the list is empty.
func (ll *LinkedList[T]) IsEmpty() bool {
return ll.head == nil
}