What is the condition of overflow in simple queue in data structure?
Answers
Answered by
1
Queue is an abstruse data structure which is bit similar to stacks.
Queue is open from both sides, one side is open for inserting data and the other end is open to remove data.
Queue uses First in First Out method. There are two types of Queue: Empty Queue and Bounded Queue.
Similar questions