About 31,600 results
Open links in new tab
  1. Array implementation of queue – Simple | GeeksforGeeks

    Mar 12, 2025 · To implement a queue of size n using an array, the operations are as follows: Enqueue: Adds new elements to the end of the queue. Checks if the queue has space before …

  2. Introduction and Array Implementation of Queue - GeeksforGeeks

    Mar 5, 2025 · Simple Array implementation Of Queue: For implementing the queue, we only need to keep track of two variables: front and size. We can find the rear as front + size – 1. The …

  3. Array-Based Queues vs List-Based Queues - GeeksforGeeks

    May 2, 2023 · Array-based queues and List-based queues are two common implementations of the Queue data structure in computer science. Array-based queues use an array as the …

  4. Queue (abstract data type) - Wikipedia

    A queue is an example of a linear data structure, or more abstractly a sequential collection. Queues are common in computer programs, where they are implemented as data structures …

  5. Array Implementation Of Queues

    We’ll start with an overview of what arrays and queues are, followed by the specific steps for implementing a queue using an array. We’ll also cover some of the key operations you can …

  6. Queues | OCR A Level Computer Science Revision Notes 2017

    Sep 12, 2024 · How Do You Program a Queue? public static final int MAX_SIZE = 6; public static ArrayList<Integer> queue = new ArrayList<>(); public static int front = 0; public static int rear = …

  7. Queue Data Structure using Array Implementation - Tutorials for …

    Nov 11, 2023 · In this tutorial we will discuss the various concepts of queue using Array Implementation. In fig (1), 10 is the first element and 80 is the last element added to the …

  8. Queue Implementation - COMPUTER SCIENCE BYTES

    This is an implementation of a simple queue with no size restriction. It will eat away at the available memory since items are never actually removed from the dynamic array. Notice that …

  9. Queue Implementation Using Array: Your One-Stop Solution

    Jul 23, 2024 · How to Implement Queue Using Arrays? It is common to use the queue data structure across all the branches of computer sciences to solve various problems related to …

  10. Array Implementation of Queue: From Basics to Mastery - EDUCBA

    Dec 6, 2023 · Discovering the queue implementation using an array, inserting and deleting elements, improved performance, and diverse applications.

  11. Some results have been removed