5,416 views
0 votes
0 votes
Consider a stack is implemented using an array. What is worst case time complexity of push operation?

A) O(n)

B) O(log n)

C) O(n log n)

D) O(1)

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
1
Abhrajyoti00 asked Oct 29, 2022
741 views
Can there be “Stack Overflow” in Linked list Implementation of stack? If Yes, how?