Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 654 Bytes

File metadata and controls

17 lines (10 loc) · 654 Bytes

在计算机科学中,栈(stack) 用作表示元素的集合,具有如下两种操作:

  • push,添加元素到栈的顶端(末尾)
  • pop,移除栈最顶端(末尾)的元素

可以简单概括为“后进先出(LIFO = last in, first out)”,可类比于一组物体的堆叠(一摞书,一摞盘子之类的)。

栈的 push 和 pop 操作的示意

Stack

References