Solution Review: Max Depth Parenthesis
Explore how to use stacks to calculate the maximum depth of nested parentheses in an expression. Understand two O(n) time complexity methods that track depth by pushing and popping parentheses or by counting depth without stack checks. Gain practical skills in stack management and algorithm optimization in Go.
We'll cover the following...
We'll cover the following...
First solution
Let’s see how we can solve this problem:
-
Create a stack.
-
When we come across the open parenthesis, we insert it to the stack and increase the depth counter.
-
When we get a closing parenthesis, we pop the opening parenthesis from the stack and decrease the depth counter.
-
We keep track of the depth to find maximum depth.
Solution code
Time complexity
The time complexity of this solution is ...