Vocab Bloom Hub

push-down stack

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

الترجمة: بنية بيانات في علم الحاسوب تعمل بمبدأ «آخر ما يدخل أول ما يخرج» (LIFO)، حيث تُضاف العناصر وتُحذف من قمة المكدس فقط.

مدخل واحد

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.

    🌐بنية بيانات