We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07fbfbb commit 2879f39Copy full SHA for 2879f39
src/dataStructures/queue/README.md
@@ -52,7 +52,7 @@ These are some variants of queue that are commonly used.
52
Deque is a variant of queue where elements can be removed or added from the head and tail of the queue.
53
Deque could come in handy when trying to solve sliding window problems.
54
55
-However, it is important to note that when implementing a deque, unlike a queue, you would require a doubly linked list.
+A deque can be implemented in multiple ways, using doubly linked lists, arrays or two stacks.
56
57
#### Monotonic Queue
58
0 commit comments