About 3,050 results
Open links in new tab
  1. Stack Data Structure - GeeksforGeeks

    Jan 20, 2026 · A Stack is a linear data structure that follows a particular order in which the operations are performed. The order may be LIFO (Last In First Out) or FILO (First In Last Out).

  2. 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: Pop, which …

  3. What Is a Stack? - Computer Hope

    Apr 8, 2026 · In computer programming, a stack is a data structure that only operates on the most recent item added, also known as LIFO (Last In, First Out). When a new item is added to the stack, it's …

  4. Data Structures 101: Stacks - freeCodeCamp.org

    Aug 6, 2018 · Data structures are a way to organize our information. They provide a means of storing different types of data in unique ways and methods to access either all or distinct parts of it. Have …

  5. Stacks and Queues A Level Computer Science | OCR Revision

    Jul 25, 2025 · Learn about Stacks and Queues for your A Level Computer Science exam. This revision note includes LIFO structure, applications, and operations like push and pop.

  6. Stack in Data Structure: Examples, Uses, Implementation, More

    In computer science, the stack data structure helps manage data in various applications, from reversing strings to navigating browser history. Here, we'll learn everything about stack in data structure with …

  7. Understanding Stack in Data Structures: A Comprehensive Guide

    Sep 18, 2024 · In the context of computing, a stack is an essential data structure used for managing tasks like function calls, expression evaluation, and memory management. Its simplicity makes it an …

  8. Best 12 Stack Examples in Real Life in Simple Explanation - upGrad

    Jan 22, 2026 · Discover 12 stack examples in real life, explained in simple language. Learn how this data structure works with everyday objects & practical coding examples.

  9. Stacks - Isaac Computer Science

    The free online learning platform for GCSE and A level Computer Science students and teachers. Discover our computer science revision and homework questions today.

  10. Stacks - University of Nevada, Reno

    Stacks are useful data structures and are used in a variety of ways in computer science. You already know that stacks are used to implement functions and you have seen that each running program has …