About 14,900 results
Open links in new tab
  1. Deque Data Structure - GeeksforGeeks

    Apr 5, 2026 · Deque or Double Ended Queue is a generalized version of Queue data structure that allows insert and delete at both …

  2. Double-ended queue - Wikipedia

    In computer science, a double-ended queue (abbreviated to deque — / dɛk / DEK), is an abstract data type that serves as a …

  3. std::deque - cppreference.com

    std::deque (double-ended queue) is an indexed sequence container that allows fast insertion and deletion at both its beginning and …

  4. Deque Data Structure - Programiz

    Deque or Double Ended Queue is a type of queue in which insertion and removal of elements can either be performed from the front …

  5. Difference between "enqueue" and "dequeue" - Stack Overflow

    Mar 5, 2015 · This is quite similar to push and pop in a stack, but the terms enqueue and dequeue avoid confusion as to whether the …

  6. Deque (Java Platform SE 8 ) - Oracle

    A linear collection that supports element insertion and removal at both ends. The name deque is short for "double ended queue" and …

  7. Lec-48: Dequeue () in Queue using Array | Data Structure

    May 17, 2023 · 🔹 Gate Smashers Shorts: Watch quick concepts & short videos here: / @gatesmashersshorts 🔹 Subscribe for more …

  8. Deque Explained: Operations, Examples, and Use Cases

    Apr 10, 2026 · A deque (short for Double-Ended Queue) is a data structure that lets you add and remove elements from both the …

  9. Learn Deque in Data Structure From Scratch - Simplilearn

    Nov 18, 2025 · Deque is a data structure that inherits the properties of both queues and stacks. Additionally, the implementation of …

  10. Dequeue Operation in Queues - Talent Battle

    Aug 24, 2024 · The dequeue operation is a core aspect of queue management, ensuring that elements are systematically removed …