-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolution.js
98 lines (86 loc) · 2.45 KB
/
solution.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
/**
* Initialize your data structure here.
*/
var Node = function (val) {
this.val = val
this.next = null
}
var MyLinkedList = function() {
this.head = new Node(-1)
this.length = 0
};
/**
* Get the value of the index-th node in the linked list. If the index is invalid, return -1.
* @param {number} index
* @return {number}
*/
MyLinkedList.prototype.get = function(index) {
if (index < 0 || index >= this.length) return -1
let cur = this.head.next
for (let i = 0; i < index; i++) cur = cur.next
return cur.val
};
/**
* Add a node of value val before the first element of the linked list. After the insertion, the new node will be the first node of the linked list.
* @param {number} val
* @return {void}
*/
MyLinkedList.prototype.addAtHead = function(val) {
this.addAtIndex(0, val)
};
/**
* Append a node of value val to the last element of the linked list.
* @param {number} val
* @return {void}
*/
MyLinkedList.prototype.addAtTail = function(val) {
this.addAtIndex(this.length, val)
};
/**
* Add a node of value val before the index-th node in the linked list. If index equals to the length of linked list, the node will be appended to the end of linked list. If index is greater than the length, the node will not be inserted.
* @param {number} index
* @param {number} val
* @return {void}
*/
MyLinkedList.prototype.addAtIndex = function(index, val) {
if (0 <= index && index <= this.length) {
let node = new Node(val),
pre = this.head,
cur = this.head.next,
i = 0
while (cur && i++ < index) {
pre = cur
cur = cur.next
}
node.next = cur
pre.next = node
this.length++
}
};
/**
* Delete the index-th node in the linked list, if the index is valid.
* @param {number} index
* @return {void}
*/
MyLinkedList.prototype.deleteAtIndex = function(index) {
if (0 <= index && index < this.length) {
let pre = this.head,
cur = this.head.next,
i = 0
while (i++ < index) {
pre = cur
cur = cur.next
}
pre.next = cur.next
this.length--
}
};
/**
* Your MyLinkedList object will be instantiated and called as such:
* var obj = Object.create(MyLinkedList).createNew()
* var param_1 = obj.get(index)
* obj.addAtHead(val)
* obj.addAtTail(val)
* obj.addAtIndex(index,val)
* obj.deleteAtIndex(index)
*/