Vocab Bloom Hub

push-down stack

/ˈpʊʃ daʊn stæk/

翻译: 计算机科学中的一种数据结构,遵循后进先出(LIFO)原则,元素的插入和删除都只能在栈顶进行。

1 个条目

phrase

C1formalcommonIT/ˈpʊʃ daʊn stæk/

A data structure in computing that follows the Last In, First Out (LIFO) principle, where elements are added and removed only from the top of the stack.

  • 🇨🇳计算机科学中的一种数据结构,遵循后进先出(LIFO)原则,元素的插入和删除都只能在栈顶进行。
  1. Data structure C1 formal

    A data structure that follows the Last-In-First-Out (LIFO) principle, where elements are added and removed from the top.

    • The push-down stack is used to manage function calls in programming.
    • When you push an item onto the stack, it becomes the new top element.
    • The algorithm uses a push-down stack to reverse the order of characters.

    🇨🇳数据结构