-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinkedList.js
More file actions
75 lines (63 loc) · 1.62 KB
/
Copy pathLinkedList.js
File metadata and controls
75 lines (63 loc) · 1.62 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
function LinkedList() {
this.head = null;
this.tail = null;
}
function Node(value, next, prev) {
this.value = value;
this.next = next;
this.prev = prev;
}
var ll = new LinkedList();
var userList = new LinkedList();
var toDoList = new LinkedList();
LinkedList.prototype.addToHead = function(value) {
var newNode = new Node(value, this.head, null);
if(this.head) this.head.prev = newNode;
else this.tail = newNode;
this.head = newNode;
};
LinkedList.prototype.addToTail = function(value) {
var newNode = new Node(value, null, this.tail);
if(this.tail) this.tail.next = newNode;
else this.head = newNode;
this.tail = newNode;
};
LinkedList.prototype.removeHead = function() {
if(!this.head) return null;
var val = this.head.value;
this.head = this.head.next;
if(this.head) this.head.prev = null;
else this.tail = null;
return val;
};
LinkedList.prototype.removeTail = function() {
if(!this.tail) return null;
var val = this.tail.value;
this.tail = this.tail.prev;
if(this.tail) this.tail.next = null;
else this.head = null;
return val;
}
LinkedList.prototype.search = function(searchValue) {
var currentNode = this.head;
while(currentNode) {
if(currentNode.value === searchValue) return currentNode.value;
currentNode = currentNode.next;
}
return null;
};
ll.addToHead(200);
ll.addToHead(400);
ll.addToHead(600);
ll.addToTail("Obi");
ll.addToTail("Cheery");
ll.addToTail(20);
// ll.removeHead()
// ll.removeHead()
// ll.removeHead()
// ll.removeHead()
// var ourExtract = ll.removeHead();
// console.log(ourExtract)
// var ext2 = ll.removeTail();
// console.log(ext2);
ll.search("Obi")