-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathz_linked-list-queue.js
83 lines (73 loc) · 2.56 KB
/
z_linked-list-queue.js
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
function LinkedListQueue() {
this.front = null;
this.back = null;
}
// add elements to queue in O(1) time
LinkedListQueue.prototype.enqueue = function (element) {
var N = {
data: element,
next: null,
};
if (this.back === null) {
// If back is null, that means the whole queue is null
var location = this.back; // $$
this.front = N;
this.back = N;
return location; // $$ both ‘location’ pointer variables point to the node BEHIND the node we have just added. So, initially this pointer will hold 2 nodes. Future: this pointer will hold more if we keep inserting
} else {
location = this.back; // $$
this.back.next = N;
this.back = this.back.next;
return location; // $$
}
};
// remove first element from queue in O(1) time
LinkedListQueue.prototype.dequeue = function () {
if (this.front !== null) {
var first = this.front;
this.front = this.front.next;
return first.data;
} else {
if (this.back !== null) {
this.back = null;
}
return "Cannot dequeue because queue is empty";
}
};
// given a location, we can remove a value in O(1) time
LinkedListQueue.prototype.remove = function (location) {
// case: removing the head node
if (location === null) {
this.front = this.front.next;
} else {
// takes care of all middle nodes AND back node
location.next = location.next.next;
}
};
// test data #1
var linkedQueue = new LinkedListQueue();
linkedQueue.enqueue("a"); // a
linkedQueue.enqueue("b"); // a, b
var locationC = linkedQueue.enqueue("c"); // a, b, c
linkedQueue.enqueue("d"); // a, b, c, d
linkedQueue.enqueue("e"); // a, b, c, d, e
linkedQueue.remove(locationC); // a, b, d, e
linkedQueue.dequeue(); // b, d, e
linkedQueue.dequeue(); // d, e
linkedQueue.dequeue(); // e
var lastElemToBeDequeued = linkedQueue.dequeue(); // empty, returns e
lastElemToBeDequeued = linkedQueue.dequeue(); // empty, returns "Cannot dequeue because queue is empty"
console.log(lastElemToBeDequeued);
// test data #2
var linkedQueue = new LinkedListQueue();
var locationA = linkedQueue.enqueue("a"); // a
var locationB = linkedQueue.enqueue("b"); // a, b
var locationC = linkedQueue.enqueue("c"); // a, b, c
var locationD = linkedQueue.enqueue("d"); // a, b, c, d
var locationE = linkedQueue.enqueue("e"); // a, b, c, d, e
linkedQueue.remove(locationA);
var currPointer = linkedQueue.front;
while (currPointer !== null) {
console.log(currPointer.data);
currPointer = currPointer.next;
}