6,820 views
0 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.

Position:
Show:

Related questions

9 9 votes
2 2 answers
391
391 views
GO Classes asked Jul 27
391 views
Given a stack $S$ with $5$ elements from top to bottom as:$2, 4, 6, 8, 10$and an empty queue $Q$.First, remove the elements one by one from $S$ and insert them into $Q$.T...
7 7 votes
1 1 answer
452
452 views
GO Classes asked Jul 27
452 views
Which of the following statements are true?$\text{S1.}$ Stack operations $\texttt{push}$, $\texttt{pop}$, and $\texttt{isEmpty}$ can be worst-case $O(1)$ for a linked-lis...
7 7 votes
1 1 answer
304
304 views
GO Classes asked Jul 10
304 views
Assume there are $n$ elements in the data structure. Consider the following statements:$\text{S1}:$ A stack can be implemented using a linked list such that each individu...
6 6 votes
3 3 answers
310
310 views
GO Classes asked Jul 8
310 views
Suppose an intermixed sequence of stack push and pop operations is performed. The push operations push the integers $0$ through $9$ in order. The pop operations print the...