forked from haoel/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
validParentheses.cpp
49 lines (45 loc) · 1.31 KB
/
validParentheses.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
// Source : https://oj.leetcode.com/problems/valid-parentheses/
// Author : Hao Chen
// Date : 2014-06-30
/**********************************************************************************
*
* Given a string containing just the characters '(', ')', '{', '}', '[' and ']',
* determine if the input string is valid.
*
* The brackets must close in the correct order, "()" and "()[]{}" are all valid
* but "(]" and "([)]" are not.
*
*
**********************************************************************************/
#include <iostream>
#include <string>
#include <stack>
using namespace std;
bool isValid(string s) {
stack<char> st;
for(auto ch : s) {
if (ch=='{' || ch =='[' || ch=='(' ) {
st.push(ch);
}else if (ch=='}' || ch ==']' || ch == ')' ){
if (st.empty()) return false;
char sch = st.top();
if ( (sch=='{' && ch =='}') || (sch=='[' && ch==']') || (sch=='(' && ch==')' ) ){
st.pop();
}else {
return false;
}
}else{
return false;
}
}
return st.empty();
}
int main(int argc, char**argv)
{
string s = "{{}{[]()}}";
if (argc>1){
s = argv[1];
}
cout << "str = \"" << (s) << "\"" << endl;
cout << isValid(s) << endl;
}