-
Notifications
You must be signed in to change notification settings - Fork 0
/
unordered-list.ts
141 lines (116 loc) · 2.67 KB
/
unordered-list.ts
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
class Node<T> {
value: T;
next: Node<T> | undefined;
constructor(value: T) {
this.value = value;
}
}
class UnorderedList<T> {
head: Node<T> | undefined = undefined;
isEmpty(): boolean {
return this.head === undefined;
}
add(item: T): void {
const node = new Node(item);
node.next = this.head;
this.head = node;
}
append(item: T): void {
let current = this.head;
while (current !== undefined) {
if (current.next === undefined) {
current.next = new Node(item);
break;
}
current = current.next;
}
}
insert(pos: number, item: T): void {
let current = this.head;
let previous = undefined;
let index = 0;
while (current !== undefined) {
if (index === pos) {
break;
}
[previous, current] = [current, current.next];
index = index + 1;
}
if (previous === undefined) {
this.add(item);
} else {
const node = new Node(item);
previous.next = node;
node.next = current;
}
}
size(): number {
let current = this.head;
let count = 0;
while (current !== undefined) {
count = count + 1;
current = current.next;
}
return count;
}
search(item: T): boolean {
let current = this.head;
while (current !== undefined) {
if (current.value == item) {
return true;
}
current = current.next;
}
return false;
}
index(item: T): number {
let current = this.head;
let count = 0;
while (current !== undefined) {
if (current.value === item) {
return count;
}
current = current.next;
count = count += 1;
}
return -1; // item not in list
}
remove(item: T): void {
let current = this.head;
let previous = undefined;
// small divergence from book to prevent infinite loop
// if item is not present in list
while (current !== undefined) {
if (current.value === item) {
break;
}
[previous, current] = [current, current.next];
}
if (previous === undefined) {
this.head = current?.next;
} else {
previous.next = current?.next;
}
}
pop(pos: number = this.size() - 1): T | undefined {
let current = this.head;
let previous = undefined;
let index = 0;
while (current !== undefined) {
if (index === pos) {
break;
}
[previous, current] = [current, current.next];
index = index + 1;
}
const value = current?.value;
if (previous === undefined) {
this.head = undefined;
} else {
previous.next = undefined;
}
return value;
}
}
export default UnorderedList;
export { Node };