Vidyalelo
Data Structure · Q207

Introduction to Data Structures

Programming · Data Structure · question 207

Q207

A double-ended queue supports operations like adding and removing items from both the sides of the queue. They support four operations like addFront(adding item to top of the queue), addRear(adding item to the bottom of the queue), removeFront(removing item from the top of the queue) and removeRear(removing item from the bottom of the queue). You are given only stacks to implement this data structure. You can implement only push and pop operations. What's the time complexity of performing addFront and addRear? (Assume 'm' to be the size of the stack and 'n' to be the number of elements)

A.
O(m) and O(n)
B.
O(1) and O(n)
Answer
C.
O(n) and O(1)
D.
O(n) and O(m)

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board