栈
在计算机科学中, 一个 栈(stack) 是一种抽象数据类型,用作表示元素的集合,具有两种主要操作:
- push, 添加元素到栈的顶端(末尾);
- pop, 移除栈最顶端(末尾)的元素.
以上两种操作可以简单概括为“后进先出(LIFO = last in, first out)”。
此外,应有一个 peek
操作用于访问栈当前顶端(末尾)的元素。
“栈”这个名称,可类比于一组物体的堆叠(一摞书,一摞盘子之类的)。
栈的 push 和 pop 操作的示意

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
| export default class Stack { constructor() { this.linkedList = new LinkedList(); }
isEmpty() { return !this.linkedList.head; }
push(value) { this.linkedList.prepend(value); }
peek() { if (this.isEmpty()) { return null; }
return this.linkedList.head.value; }
pop() { const removedHead = this.linkedList.deleteHead(); return removedHead ? removedHead.value : null; }
toArray() { return this.linkedList.toArray().map((linkedListNode) => linkedListNode.value); }
toString(callback) { return this.linkedList.toString(callback); } }
|