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
| class Node { constructor(v, next){ this.value = v; this.next = next; } } class LinkList { constructor(){ this.size = 0 this.head = new Node(null, null) } isEmpty() { return this.size === 0 } getSize() { return this.size } find(header, index, currentIndex){ if(index === currentIndex) return header return this.find(header.next, index, currentIndex + 1) } checkIndex(index){ if (index < 0 || index > this.size) throw Error('index error') } getNode(index) { this.checkIndex(index) if (this.isEmpty()) return return this.find(this.head, index, 0).next } addNode(v, index) { this.checkIndex(index) let prev = this.find(this.head, index, 0) prev.next = new Node(v, index) this.size++ return prev.next } insertNode(v, index){ this.addNode(v, index) } insertToFirst(v, index) { this.addNode(v, 0) } insertToLast(v, index) { this.addNode(v, this.size) } removeNode(index, isLast) { this.checkIndex(index) index = isLast ? index - 1 : index let prev = this.find(this.head, index, 0) let node = prev.next prev.next = node.next node.next = null this.size-- return node } removeFirst() { return this.removeNode(0) } removeLast() { return this.removeNode(this.size, true) } }
|