Skip to content

Commit 564b5dd

Browse files
authored
Update README.md
1 parent 9889e27 commit 564b5dd

File tree

1 file changed

+1
-1
lines changed
  • 16 - Queue Data Structure Problems/03 - (Deque) Doubly Ended Queue Problems

1 file changed

+1
-1
lines changed

16 - Queue Data Structure Problems/03 - (Deque) Doubly Ended Queue Problems/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h1 align='center'>CIRCULAR - DEQUE - DATA STRUCTURE - PROBLEMS</h1>
1+
<h1 align='center'>DEQUE - DATA STRUCTURE - PROBLEMS</h1>
22

33
<p align='center'>A <b>Circular Deque</b> is an advanced version of the double-ended queue (Deque) that behaves like a circular buffer. Unlike a linear deque, which allows insertion and deletion of elements from both ends (front and rear), the circular deque links the last position to the first position, creating a loop. This allows for more efficient use of space and ensures that the queue can be used in continuous cycles without the risk of unused memory.</p>
44

0 commit comments

Comments
 (0)