mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-11-13 06:23:00 +08:00
Merge 2fe74a7d1e
into 2c67b48c21
This commit is contained in:
commit
3aa5cb5765
@ -12,6 +12,8 @@ export default class LinkedList {
|
||||
/** @var LinkedListNode */
|
||||
this.tail = null;
|
||||
|
||||
this.length = 0;
|
||||
|
||||
this.compare = new Comparator(comparatorFunction);
|
||||
}
|
||||
|
||||
@ -29,6 +31,9 @@ export default class LinkedList {
|
||||
this.tail = newNode;
|
||||
}
|
||||
|
||||
// once node added, modify the length the list
|
||||
this.length++;
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
@ -51,6 +56,9 @@ export default class LinkedList {
|
||||
this.tail.next = newNode;
|
||||
this.tail = newNode;
|
||||
|
||||
// once node added, modify the length the list
|
||||
this.length++;
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
@ -63,6 +71,8 @@ export default class LinkedList {
|
||||
const index = rawIndex < 0 ? 0 : rawIndex;
|
||||
if (index === 0) {
|
||||
this.prepend(value);
|
||||
} else if (index === this.length) {
|
||||
this.append(value);
|
||||
} else {
|
||||
let count = 1;
|
||||
let currentNode = this.head;
|
||||
@ -85,6 +95,10 @@ export default class LinkedList {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// once node added, modify the length the list
|
||||
this.length++;
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
@ -125,6 +139,9 @@ export default class LinkedList {
|
||||
this.tail = currentNode;
|
||||
}
|
||||
|
||||
// once node added, modify the length the list
|
||||
this.length--;
|
||||
|
||||
return deletedNode;
|
||||
}
|
||||
|
||||
@ -186,6 +203,9 @@ export default class LinkedList {
|
||||
|
||||
this.tail = currentNode;
|
||||
|
||||
// once node added, modify the length the list
|
||||
this.length--;
|
||||
|
||||
return deletedTail;
|
||||
}
|
||||
|
||||
@ -206,6 +226,9 @@ export default class LinkedList {
|
||||
this.tail = null;
|
||||
}
|
||||
|
||||
// once node added, modify the length the list
|
||||
this.length--;
|
||||
|
||||
return deletedHead;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user