-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathLongest_Valid_Parenthesis.cpp
49 lines (47 loc) · 1.32 KB
/
Longest_Valid_Parenthesis.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
47
48
49
class Solution {
public:
int longestValidParentheses(string s) {
stack<int> Stack;
int result = 0;
Stack.push(-1);
for(int i = 0; i < (int)s.length(); i++) {
if(s[i] == '(') {
Stack.push(i);
} else {
if(Stack.size() == 1 or s[Stack.top()] != '(') {
Stack.push(i);
} else {
Stack.pop();
result = max(result, i - Stack.top());
}
}
}
return result;
}
};
// Another way (slightly different)
class Solution {
public:
int longestValidParentheses(string s) {
stack <int> Stack;
int maxLen = 0;
int lastPos = -1;
for(int i = 0; i < s.length(); ++i) {
if(s[i] == '(') {
Stack.push(i);
} else {
if(Stack.empty()) {
lastPos = i;
} else {
Stack.pop();
if(Stack.empty()) {
maxLen = max(maxLen, i - lastPos);
} else {
maxLen = max(maxLen, i - Stack.top());
}
}
}
}
return maxLen;
}
};