-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathssl.js
234 lines (214 loc) · 5.64 KB
/
ssl.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
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
// console.log("ll");
/**LINKED LIST */
// linked list is just a collection of nodes
// node just stores a piece of data and then it
//stores a reference to next node
// class Node {
// constructor(val) {
// this.val = val;
// this.next = null;
// }
// }
// var first = new Node("Hi");
// first.next = new Node("i");
// first.next.next = new Node("am");
// first.next.next.next = new Node("here");
// console.log(first);
class Node {
constructor(val) {
this.val = val;
this.next = null;
}
}
class SinglyLinkedList {
constructor() {
this.head = null;
this.tail = null;
this.length = 0;
}
// PUSH METHOD
// "HI"
// HT
// "HI"->"HELLO"
// H T
// "HI"->"HELLO"->"HEY"
// H T
// IF THE LIST IS EMPTY SET BOTH THE HEAD AND TAIL IN SAME FIRST POSITION
// ELSE IF THE LIST CONTAINS SOME LIST, AFTER THE TAIL CREATE THE NEW LIST AND UPDATE IT AS NEWLTAIL
push(val) {
var newNode = new Node(val);
if (!this.head) {
this.head = newNode;
this.tail = newNode;
} else {
// this.tail = newNode.next;
this.tail.next = newNode;
this.tail = newNode;
}
this.length++;
// console.log(this);
return this;
}
// IF THE LIST EMPTY IT MEANS THERE IS NO NODE IN THE LIST THEN RETURNS UNDEFINED
// ELSE LOOP THROUGH THE LIST UNTILL THE LAST ELEMENT OF THE NODES{
// INITALLY THE CURRENT AND NEWTAIL IN THE HEAD
// WE HAVE TWO VAIRABLE CURRENT AND NEWNODE
// LOOP THROUGH THE LIST WHEN THE NEXT VALUE GET NULL
// }
pop() {
if (!this.head) return undefined;
else {
var current = this.head; //updating will change here
var newTail = current; // set will change here
while (current.next) {
// console.log(current);
newTail = current; //set newtail = current
current = current.next; // updating current = next one
}
this.tail = newTail;
this.tail.next = null;
this.length--;
if (this.length === 0) {Node {val: "five", next: null, prev: Node}
this.head = null;
this.tail = null;
}
return current;
}
}
// IF THE LIST EMPTY IT MEANS THERE IS NO NODE IN THE LIST THEN RETURNS UNDEFINED
// ELSE SET THE HEAD AS SECOND NODE, WILL DISCONNECT THE FIRST NODE AUTOMATICALLY WIL BE LTHE FIRST REMOVED
shift() {
if (!this.head) return undefined;
else {
var current = this.head;
this.head = current.next;
this.length--;
}
if (this.length === 0) {
this.tail = null;
}
return current;
}
// IF THE LIST EMPTY IT MEANS THERE IS NO NODE, SET THE HEAD AND TAIL IN THE SAME LIST
// ELSE CREATE THE NEWNODE AND SET THE HEAD AS NEXT OF NEWNODE AND SET HEAD AS NEWNODE
unshift(val) {
var newNode = new Node(val);
if (!this.head) {
this.head = newNode;
this.tail = newNode;
} else {
newNode.next = this.head;
this.head = newNode;
}
this.length++;
return this;
}
get(index) {
// IF THE THE LENGHT OF LIST IS GREATER THAN OR EQULA TO INDEX OR INDEX LESS THAN ZERO RETURN NULL
// ELSE SET COUNTER AS ZERO INITIALLY LOOP THROUGH THE HEAD UNTILL COUNTER NOT EQAUL TO INDEX
if (index < 0 || index >= this.length) {
return null;
} else {
// var current = this.head;
// var increment = 0;
// while (current.next) {
// if (increment === index) {
// return current;
// } else {
// current = current.next;
// increment++;
// }
// }
var counter = 0;
var current = this.head;
while (counter !== index) {
current = current.next;
counter++;
}
return current;
}
}
set(index, val) {
// IF THE THE LENGHT OF LIST IS GREATER THAN OR EQUAL TO INDEX OR INDEX LESS THAN ZERO RETURN NULL
// ELSE SET COUNTER AS ZERO INITIALLY LOOP THROUGH THE HEAD UNTILL COUNTER NOT EQAUL TO INDEX, WHEN THE INDEX FOUND CHANGE THE VALUE
// if (index < 0 || index >= this.length) {
// return null;
// } else {
// var counter = 0;
// var current = this.head;
// while (counter !== index) {
// current = current.next;
// counter++;
// }
// var change = current;
// change.val = val;
// return change; // return true
// }
var foundNode = this.get(index);
if (foundNode) {
foundNode.val = val;
return true;
}
return false;
}
insert(index, val) {
// if (index < 0 || index > this.length) return false;
// if (index === this.length) return !!this.push(val);
// if (index === 0) return !!this.unshift(val);
// var newNode = new Node(val);
// var prev = this.get(index - 1);
// var temp = prev.next;
// prev.next = newNode;
// newNode.next = temp;
// this.length++;
// return true;
if (index < 0 || index > this.length) return false;
if (index === this.length) {
this.length++;
this.push(val);
}
if (index === 0) {
this.length++;
this.unshift(val);
} else {
var newNode = new Node(val);
var prev = this.get(index - 1);
var nextOne = this.get(index);
prev.next = newNode;
newNode.next = nextOne;
this.length++;
return true;
}
}
remove(index) {
// if (index < 0 || index >= this.length) return undefined;
// if (index === this.length - 1) {
// this.length--;
// this.pop();
// }
// if (index === 0) {
// this.length--;
// this.shift();
// } else {
// var prev = this.get(index - 1);
// var nextOne = this.get(index + 1);
// prev.next = nextOne;
// this.length--;
// return true;
// }
if (index < 0 || index >= this.length) return undefined;
if (index === 0) return this.shift();
if (index === this.length - 1) return this.pop();
var previousNode = this.get(index - 1);
var removed = previousNode.next;
previousNode.next = removed.next;
this.length--;
return removed;
}
}
var list = new SinglyLinkedList();
list.push("Hi");
list.push("there");
list.push("you");
list.push("I'm");
list.push("here");