-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Expand file tree
/
Copy path0020-valid-parentheses.cpp
More file actions
40 lines (33 loc) · 898 Bytes
/
0020-valid-parentheses.cpp
File metadata and controls
40 lines (33 loc) · 898 Bytes
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
/*
Given s w/ '(, ), {, }, [, ]', determine if valid
Ex. s = "()[]{}" -> true, s = "(]" -> false
Stack of opens, check for matching closes & validity
Time: O(n)
Space: O(n)
*/
class Solution {
public:
bool isValid(string s) {
stack<char> open;
unordered_map<char, char> parens = {
{')', '('},
{']', '['},
{'}', '{'},
};
for (const auto& c : s) {
if (parens.find(c) != parens.end()) {
// if input starts with a closing bracket.
if (open.empty()) {
return false;
}
if (open.top() != parens[c]) {
return false;
}
open.pop();
} else {
open.push(c);
}
}
return open.empty();
}
};