Vocab Bloom Hub

push-down queue

/ˈpʊʃ daʊn kjuː/

翻译: 计算机科学中的一种数据结构,最后添加的元素最先被移除,也称为栈。它遵循后进先出(LIFO)原则,常用于编程中的函数调用管理、撤销操作和语法分析算法。

1 个条目

phrase

C1formalcommonIT/ˈpʊʃ daʊn kjuː/

A data structure in computing where the last element added is the first one to be removed, also known as a stack. It operates on a Last-In-First-Out (LIFO) principle, commonly used in programming for managing function calls, undo operations, and parsing algorithms.

  • 🇨🇳计算机科学中的一种数据结构,最后添加的元素最先被移除,也称为栈。它遵循后进先出(LIFO)原则,常用于编程中的函数调用管理、撤销操作和语法分析算法。
  1. Data structure (stack) C1 formal

    A data structure that follows the Last-In-First-Out (LIFO) principle, where elements are added and removed from the top. Often incorrectly called a 'push-down queue' but is actually a stack.

    • The push-down queue is used to manage function calls in programming.
    • In this algorithm, we use a push-down queue to reverse the order of elements.
    • The compiler uses a push-down queue to evaluate arithmetic expressions.

    🇨🇳数据结构(栈)