Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 알고리즘
- 중반부
- 코테
- BaekJoon
- Smilegate
- Union-find
- 보석쇼핑
- 유니온파인드
- 1편
- Algorithm
- LIS #Algorithm #요소추적
- 코딩테스트
- 카카오인턴
- 서버개발캠프
- 스마일게이트
- 삼성 #코테 #2020상반기 #c++
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 식단
- 백준
- 카카오
- c++
- BFS
- 투포인터
- 소감
Archives
- Today
- Total
짱아의 개발 기록장
LeetCode : 20. Valid Parentheses 본문
반응형
Stack을 사용하여 유효한 여부를 판단하기만 하면 된다.
[메인 로직]
닫는 괄호가 나오면, Stack의 top에 같은 종류의 여는 괄호가 나오지 않으면 invalid하다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
class Solution {
public:
stack<char> S;
bool check = true;
bool isValid(string s) {
for(int i=0; i<s.size(); i++){
if(s[i]=='(' || s[i]=='{' || s[i]=='['){ // 열린 괄호
S.push(s[i]);
}else{ // 닫힌 괄호
if(S.empty()){
check = false;
break;
}
if(s[i]==')'){
if(S.top()!='('){
check = false;
break;
}
S.pop();
}else if(s[i]=='}'){
if(S.top()!='{'){
check = false;
break;
}
S.pop();
}else{
if(S.top()!='['){
check = false;
break;
}
S.pop();
}
}
}
if(!S.empty()){
check = false;
}
return check;
}
};
|
cs |
반응형
'Algorithm > LeetCode' 카테고리의 다른 글
LeetCode : 21. Merge Two Sorted Lists (0) | 2021.01.20 |
---|---|
LeetCode : 49. Group Anagrams (0) | 2021.01.19 |
LeetCode : 77. Combinations (0) | 2021.01.18 |
LeetCode : 47. Permutations II (0) | 2021.01.17 |
LeetCode : 22. Generate Parentheses (0) | 2021.01.15 |
Comments