Write down flowchart of Enqueue and Dqueue data structures .what is the drawback of queue data structures ?. How circular queue overcome it explains it with example
Answers
Answered by
1
Answer:
Unlike stacks, a queue is open at both its ends. One end is always used to insert data (enqueue) and the other is used to remove data (dequeue).
Similar questions