VOOZH about

URL: https://www.geeksforgeeks.org/dsa/time-and-space-complexity-analysis-of-stack-operations/

⇱ Time and Space Complexity analysis of Stack operations - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Time and Space Complexity analysis of Stack operations

Last Updated : 23 Jul, 2025

What is Stack?

Stack is a linear data structure that follows a particular order in which the elements are inserted and deleted. A stack follows the principle of last in first out(LIFO) which means that the last element inserted into the stack should be removed first. Consider an example of plates stacked over one another in the canteen. The plate which is at the top is the first one to be removed, i.e. the plate which has been placed at the bottommost position remains in the stack for the longest period of time. So, it can be simply seen to follow LIFO(Last In First Out)/FILO(First In Last Out) order. A stack can be implemented using Arrays or Linked Lists.

Complexity analysis of different stack operations:

1) push():

This operation pushes an element on top of the stack and the top pointer points to the newly pushed element. It takes one parameter and pushes it onto the stack.

Below is the implementation of push() using Array :


Output
1 pushed into stack successfully !
2 pushed into stack successfully !

Complexity Analysis:

  • Time Complexity: O(1),  In the push function a single element is inserted at the last position. This takes a single memory allocation operation which is done in constant time.
  • Auxiliary Space: O(1), As no extra space is being used.

Below is the implementation of push() using Linked List :


Output
1 pushed into stack successfully !
2 pushed into stack successfully !

Complexity Analysis:

  • Time Complexity: O(1), Only a new node is created and the pointer of the last node is updated. This includes only memory allocation operations. Hence it can be said that insertion is done in constant time.
  • Auxiliary Space: O(1), No extra space is used.

2) pop():

This operation removes the topmost element in the stack and returns an error if the stack is already empty.

Below is the implementation of pop() using Array:


Output
1 pushed into stack successfully !
Element popped from stack : 1
Stack Underflow

Complexity Analysis:

  • Time Complexity: O(1), In array implementation, only an arithmetic operation is performed i.e., the top pointer is decremented by 1. This is a constant time function.
  • Auxiliary Space: O(1), No extra space is utilized for deleting an element from the stack.

Below is the implementation of pop() using Linked List :


Output
1 pushed into stack successfully !
Element popped from stack : 1
Stack Underflow

Complexity Analysis:

  • Time Complexity: O(1), Only the first node is deleted and the top pointer is updated. This is a constant time operation.
  • Auxiliary Space: O(1). No extra space is utilized for deleting an element from the stack.

3) peek():

This operation prints the topmost element of the stack.

Below is the Implementation of peek() using Array:


Output
1 pushed into stack successfully !
2 pushed into stack successfully !
Peek element of stack : 2

Complexity Analysis:

  • Time Complexity: O(1), Only a memory address is accessed. This is a constant time operation.
  • Auxiliary Space: O(1), No extra space is utilized to access the value.

Below is the implementation of peek() using Linked List :


Output
1 pushed into stack successfully !
Peek element of stack : 1

Complexity Analysis:

  • Time Complexity: O(1). In linked list implementation also a single memory address is accessed. It takes constant time.
  • Auxiliary Space: O(1). No extra space is utilized to access the element because only the value in the node at the top pointer is read.

4) isempty():

This operation tells us whether the stack is empty or not.

Below is the implementation of isempty() using Array :


Output
1

Complexity Analysis:

  • Time Complexity: O(1), It only performs an arithmetic operation to check if the stack is empty or not.
  • Auxiliary Space: O(1), It requires no extra space.

Below is the implementation of isempty() using Linked List :


Output
1

Complexity Analysis:

  • Time Complexity: O(1), It checks if the pointer of the top pointer is Null or not. This operation takes constant time.
  • Auxiliary Space: O(1), No extra space is required.

5) size():

This operation returns the current size of the stack.

Below is the implementation of size() using Array:


Output
1 pushed into stack successfully !
2 pushed into stack successfully !
The size of the stack is 2

Complexity Analysis:

  • Time Complexity: O(1), because this operation just performs a basic arithmetic operation.
  • Auxiliary Space: O(1) NO extra space is required to calculate the value of the top pointer.

Below is the implementation of size() using Linked List:


Output
Size of stack : 3

Complexity Analysis:

  • Time Complexity: O(1), because the size is calculated and updated every time a push or pop operation is performed and is just returned in this function.
  • Auxiliary Space: O(1), NO extra space is required to calculate the size of the stack.
Comment
Article Tags: