Problem Description
Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. An input string is valid if:
- Open brackets must be closed by the same type of brackets.
- Open brackets must be closed in the correct order.
- Every close bracket has a corresponding open bracket of the same type.
Key Insights
- Use a stack data structure to keep track of opening brackets.
- Every time we encounter a closing bracket, check if it matches the top of the stack.
- If it matches, pop the top of the stack; otherwise, the string is invalid.
- At the end of the iteration, the stack should be empty if the string is valid.
Space and Time Complexity
Time Complexity: O(n), where n is the length of the input string. Space Complexity: O(n) in the worst case for the stack.
Solution
To solve this problem, we utilize a stack to keep track of opening brackets as we traverse the string. When we encounter a closing bracket, we check if it corresponds to the most recent opening bracket (the one on top of the stack). If it does, we pop the stack; if not, the string is invalid. Finally, we check if the stack is empty to confirm that all opening brackets were properly closed.