Why is implementation of stack operations on queues not feasible for a large dataset (Asssume the number of elements in the stack to be n)?
Why is implementation of stack operations on queues not feasible for a large dataset (Asssume the number of elements in the stack to be n)? Correct Answer Because of its time complexity O(n)
To perform Queue operations such as enQueue and deQueue there is a need of emptying all the elements of a current stack and pushing elements into the next stack and vice versa. Therfore it has a time complexity of O(n) and the need of extra stack as well, may not be feasible for a large dataset.