2015-11-24 22:23:25 +08:00

50 lines
1.3 KiB
C++

// 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;
}