-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathValid_Parentheses.cpp
46 lines (45 loc) · 1.37 KB
/
Valid_Parentheses.cpp
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
45
46
// without extra space
class Solution {
public:
bool isValid(string s) {
int first = 0, second = 0, third = 0;
for(int i = 0; i < (int)s.length(); ++i) {
if(s[i] == '(') {
++first;
} else if(s[i] == ')') {
--first;
}else if(s[i] == '{') {
++second;
} else if(s[i] == '}') {
--second;
}else if(s[i] == '[') {
++third;
} else if(s[i] == ']') {
--third;
}
if(first < 0 or second < 0 or third < 0) {
return false;
}
}
return first == 0 and second == 0 and third == 0;
}
};
// using stack
class Solution {
public:
bool isValid(string s) {
stack <char> Stack;
for(int i = 0; i < s.length(); ++i) {
if(s[i] == '(' or s[i] == '{' or s[i] == '[')
Stack.push(s[i]);
else {
if(Stack.empty()) return false;
if(s[i] == ')') if(Stack.top() != '(') return false;
else if(s[i] == '}') if(Stack.top() != '{') return false;
else if(s[i] == ']') if(Stack.top() != '[') return false;
Stack.pop();
}
}
return Stack.empty();
}
};