-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlinkedList.js
More file actions
49 lines (43 loc) · 955 Bytes
/
linkedList.js
File metadata and controls
49 lines (43 loc) · 955 Bytes
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
var makeLinkedList = function(){
var list = {};
list.head = null;
list.tail = null;
list.addToTail = function(value){
if (this.head === null) {
this.head = makeNode(value);
this.tail = this.head
}
else {
this.tail.next = makeNode(value);
this.tail = this.tail.next;
}
};
list.removeHead = function(){
toBeRemoved = this.head;
this.head = this.head.next
delete toBeRemoved;
if (this.head === null) {
toBeRemoved = this.tail;
this.tail = null;
delete toBeRemoved;
}
};
list.contains = function(target){
var currentNode = this.head;
var result = false;
while(currentNode){
if(currentNode.value === target){
return result = true;
}
currentNode = currentNode.next;
}
return result;
};
return list;
};
var makeNode = function(value){
var node = {};
node.value = value;
node.next = null;
return node;
};