-
A queue is implemented using an array such that ENQUEUE and DEQUEUE operations are performed efficiently. Which one of the following statements is CORRECT (n refers to the number of items in the queue)?
-
- Both operations can be performed in O(1) time
- At most one operation can be performed in O(1) time but the worst case time for the other operation will be Ω(n)
- The worst case time complexity for both operations will be Ω(n)
- Worst case time complexity for both operations will be Ω(log n)
- Both operations can be performed in O(1) time
Correct Option: A
We can use circular array to implement both O(1) time.