-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppend(1).js
59 lines (51 loc) · 1.36 KB
/
Append(1).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
class Node {
constructor(value) {
this.value = value
this.next = null
}
}
class LinkedList {
constructor(value) {
this.head = value
this.size = 0
}
emptycheck() {
return this.size === 0
}
getSize() {
return this.size
}
//0(1)
Append(value) {//this is the append method adding element to the end of the node
const node = new Node(value)
if(this.emptycheck()){
this.head=node
}else{
let lastAdd = this.head;
while(lastAdd.next){
lastAdd = lastAdd.next;
}
console.log('###CHECKING!!@@:',lastAdd);
lastAdd.next = node;
}
this.size++
}
print(){
if(this.emptycheck()){
console.log('This list is Empty')
}else{
let currentnode=this.head
console.log('list values:',currentnode.value);
}
};
}
let listoperations=new LinkedList()
console.log("#Check list is empty",listoperations.emptycheck())
console.log("#Check list size:",listoperations.getSize())
listoperations.print()
listoperations.Append(10)
listoperations.print()
listoperations.Append(20)
listoperations.print()
listoperations.Append(30)
listoperations.print()