-Fix: spelling
-Fix: pronunciation
pull/8366/head
Erskine Gamaliel L. Duenas 4 weeks ago committed by GitHub
parent ff5609b722
commit 27a65b4a9e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      src/data/roadmaps/java/content/dequeue@DWO2-EPIUeKK5aQGiTuKc.md

@ -1,6 +1,6 @@
# Dequeue
# Deque
A Dequeue (pronounced "dee-queue") is a double-ended queue, a data structure that allows you to add and remove elements from both the front (head) and the back (tail) of the queue. Unlike a regular queue (FIFO - First-In, First-Out), a dequeue provides flexibility for both FIFO and LIFO (Last-In, First-Out) operations. This makes it useful for implementing various algorithms and data management tasks where elements need to be accessed or modified from either end.
A Deque (pronounced "deck") is a double-ended queue, a data structure that allows you to add and remove elements from both the front (head) and the back (tail) of the queue. Unlike a regular queue (FIFO - First-In, First-Out), a deque provides flexibility for both FIFO and LIFO (Last-In, First-Out) operations. This makes it useful for implementing various algorithms and data management tasks where elements need to be accessed or modified from either end.
Visit the following resources to learn more:

Loading…
Cancel
Save