About 368,000 results
Open links in new tab
  1. Queue Data Structure - GeeksforGeeks

    Jul 23, 2025 · A Queue Data Structure is a fundamental concept in computer science used for storing and managing data in a specific order.

  2. Queue (abstract data type) - Wikipedia

    Queues are common in computer programs, where they are implemented as data structures coupled with access routines, as an abstract data structure or in object-oriented languages as …

  3. QUEUE Definition & Meaning - Merriam-Webster

    Que is homophonous with a number of other words, most of which have wildly different spellings and meanings. One of the words that people are looking for when they look up que is queue, a …

  4. QUEUE | English meaning - Cambridge Dictionary

    If more than the maximum number of print jobs are submitted at the same time, the software queues the excess jobs. During peak periods calls can be queued rather than callers hearing a …

  5. Queue Data Structure: Types, Example, Operations, Full Guide

    Feb 20, 2025 · Queues are widely used in various applications, from managing tasks in operating systems to handling customers in line at a bank, showing their versatility and efficiency in …

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

    A queue is a useful data structure in programming. It is similar to the ticket queue outside a cinema hall, where the first person entering the queue is the first person who gets the ticket. In …

  7. Queue Data Structure - Online Tutorials Library

    As a small example in this tutorial, we implement queues using a one-dimensional array. Queue operations also include initialization of a queue, usage and permanently deleting the data from …

  8. Queue: Definition, Types, Implementation, Usage, and More

    Jun 22, 2025 · Queues, which are common in computer applications, can be utilized in any circumstance when you want things to happen in the order they were called but the machine …

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

  10. Different Types of Queues and its Applications

    The article explores five distinct types of queues: Circular Queue, Input Restricted Queue, Output Restricted Queue, Double Ended Queue, and Priority Queue. Each type serves specific …