1. 릿코드 leetcode ValidParentheses
2. 문제
Given a string s containing just the characters ‘(’, ‘)’, ‘{’, ‘}’, ‘[’ and ‘]’, determine if the input string is valid.
2.1. 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.
2.2. Example 1:
Input: s = “()”
Output: true
2.3. Example 2:
Input: s = “()[]{}”
Output: true
2.4. Example 3:
Input: s = “(]”
Output: false
2.5. Example 4:
Input: s = “([)]”
Output: false
2.6. Example 5:
Input: s = “{[]}”
Output: true
2.1. 컴퓨팅적 사고
- (1). 스택을 이용하여 스택에 담긴 맨위에 값과 현재 들어오는 값과의 비교를 진행한다.
- (2). 만약 괄호쌍의 짝은 맞으니 올바른 괄호가 아닐 경우에는 false를 리턴한다.
- (3). 마지막으로 스택이 비어있다는것은 현재 모든값의 짝이 맞는것을 의미하므로 true를 리턴한다.
2.2. 소스코드
1 | public class leetcode_ValidParentheses_kgh { |