About 1,380,000 results
Open links in new tab
  1. Stack (abstract data type) - Wikipedia

    Simple representation of a stack runtime with push and pop operations. In computer science, a stack is an abstract data type that serves as a collection of elements with two main operations: …

  2. 4.4. The Stack Abstract Data Type — Problem Solving with …

    The stack abstract data type is defined by the following structure and operations. A stack is structured, as described above, as an ordered collection of items where items are added to …

  3. Abstract Data Types - GeeksforGeeks

    Mar 28, 2025 · The Stack ADT is a linear data structure that follows the LIFO (Last In, First Out) principle. It allows elements to be added and removed only from one end, called the top of the …

  4. Stacks and Queues - Stanford University

    We are about to discuss two new containers in which to store our data: the stack and queue containers. These are also known as abstract data types, meaning that we are defining the …

  5. Understanding Stack as an Abstract Data Type - DEV Community

    Sep 17, 2024 · Among these, the stack stands out as an essential abstract data type (ADT) due to its unique and versatile functionalities. This article will delve into what a stack is, how it …

  6. We will look at the stack as our first abstract data type and we will see two different implementations: one using a singly linked list, the other a one-ended array.

  7. Stack Properties and Attributes Properties A Stack is a LIFO structure. Considered as a linear structure, any operation is done at only one end of the structure (referred to as the ‘top’ of the …

  8. Stack ADT – Data structures - INFLIBNET Centre

    The Stack Abstract Data Type (Stack ADT) is a collection of data together with the operations on that data. We will now formally define the interface of the collection.

  9. Stack (abstract data type) - Algorithm Wiki

    A stack is a abstract collection data type where the primary operations are push which adds an element and pop which removes. It is a Last-In-First-Out (LIFO) data structure, the last …

  10. Understanding Stack as an Abstract Data Type

    Sep 17, 2024 · Among these, the stack stands out as an essential abstract data type (ADT) due to its unique and versatile functionalities. This article will delve into what a stack is, how it …