About 630,000 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. Is this pseudocode for implementation of a queue through an array

    Nov 6, 2023 · Write a pseudocode on implementing a queue through an array named Q of size n with 1-based indexing ( i.e the index of Q starts from 1 instead of the usual 0). The two …

  3. Implementation of Queue using Array

    Jan 20, 2023 · Queue implementation becomes a powerful technique for organizing and controlling data flow when arrays are used as the foundation. This method enables first-in, first …

  4. Queue using Array - OpenGenus IQ

    In this article, we have explored how to implement queue using array and explored various operations such as enqueue, dequeue, display, front and size. We have provided …

  5. Pseudocode: Enqueue and Dequeue in an Array with Linear-Indexing Below is pseudocode for adding and removing an element from a queue using an array in which the indices are used …

  6. Pseudocode: int counter // keeps track of number > x while list has more elements { increment counter if current element is > than x move to next element of list }

  7. Queues JavaScript Implementation Pseudocode and Algorithm

    Mar 3, 2022 · Implementation Pseudocode and Algorithm of Queues JavaScript . Create a Array for Queue. Create Insert function for inserting value to queue from the back side. This function …

  8. Arrays work as they do in most languages, but often their index starts at 1, rather than 0, and sometimes they use parenthesis ( ) instead of brackets [ ] Multidimensional arrays work like …

  9. PseudoCode Cheat Sheet - Zied

    1. DECLARE arrayName: ARRAY[startRowIndex : endRowIndex, startColumnIndex : endColumnIndex] OF DataType

  10. Queues using array - Data Structures Tutorial | Study Glance

    Define the Queue: Use an array to store the elements of the queue. You also need two pointers (or indices): one for the front of the queue and one for the rear. Specify Queue Capacity: …

  11. Some results have been removed
Refresh