Why Stack Exists and What Problems It Solves in DSA Python - Performance Analysis
Stacks help us manage data in a last-in, first-out way. Understanding their time complexity shows why they are fast and useful for certain problems.
We want to know how the time to add or remove items grows as the stack gets bigger.
Analyze the time complexity of the following stack operations.
class Stack:
def __init__(self):
self.items = []
def push(self, item):
self.items.append(item)
def pop(self):
return self.items.pop()
This code adds (push) and removes (pop) items from the stack using a list.
- Primary operation: Adding or removing one item at the end of the list.
- How many times: Each push or pop happens once per operation, no loops inside.
Each push or pop takes about the same time, no matter how many items are in the stack.
| Input Size (n) | Approx. Operations per push/pop |
|---|---|
| 10 | 1 |
| 100 | 1 |
| 1000 | 1 |
Pattern observation: The time stays constant even as the stack grows.
Time Complexity: O(1)
This means adding or removing an item takes the same short time no matter how big the stack is.
[X] Wrong: "Pushing or popping from a stack takes longer as the stack grows because it has more items."
[OK] Correct: The stack only adds or removes from the end, so it does not need to look at other items. This keeps the time constant.
Knowing that stack operations are fast and simple helps you choose the right tool for problems like undo features, expression evaluation, or backtracking.
"What if we used a list but added and removed items from the front instead of the end? How would the time complexity change?"