About 309,000 results
Open links in new tab
  1. C++ Program to Implement Queue using Array - GeeksforGeeks

    May 14, 2024 · In order to implement a queue using array, we must be aware of the basic operations that are performed in a queue to manipulate the elements present inside it. …

  2. 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 …

  3. 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 …

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

    Jul 23, 2024 · Learn queue implementation using arrays in the data structure and execution of supportive queue operations in this tutorial. Start learning now!

  5. Implementation of Queue using Array - Tpoint Tech

    Apr 20, 2025 · We can easily represent queue by using linear arrays. There are two variables i.e. front and rear, that are implemented in the case of every queue. Front and rear variables point …

  6. Queue Data Structure and Implementation in Java, Python and …

    Queue operations work as follows: We usually use arrays to implement queues in Java and C/++. In the case of Python, we use lists. self.k = k. self.queue = [None] * k. self.head = self.tail = -1 …

  7. Queue using Arrays in C (Implementation) | PrepInsta

    Generally, we use structures with supporting arrays to implement queues. However, queues can also be implemented using arrays, while this is not a sensical way to implement queues and …

  8. Implementation of Queue Using Array - Scaler Blog - Scaler …

    Sep 30, 2024 · Write a program that implements the operations of queue using an array. The queue is the linear data structure that works on the principle of FIFO ( First In First Out). In …

  9. Implementation of Queue Using Array in C, C++, and Java

    In this article, we will explore the concept of a queue using an array, its implementation in multiple programming languages such as C, C++, and Java, and its advantages, disadvantages, and …

  10. Queues with Python - W3Schools

    Queues can be implemented by using arrays or linked lists. Queues can be used to implement job scheduling for an office printer, order processing for e-tickets, or to create algorithms for …