Skip to content

Commit 2879f39

Browse files
authored
Update README.md
1 parent 07fbfbb commit 2879f39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dataStructures/queue/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ These are some variants of queue that are commonly used.
5252
Deque is a variant of queue where elements can be removed or added from the head and tail of the queue.
5353
Deque could come in handy when trying to solve sliding window problems.
5454

55-
However, it is important to note that when implementing a deque, unlike a queue, you would require a doubly linked list.
55+
A deque can be implemented in multiple ways, using doubly linked lists, arrays or two stacks.
5656

5757
#### Monotonic Queue
5858

0 commit comments

Comments
 (0)