class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param s string字符串
* @return bool布尔型
*/
bool isValid(string s) {
int n = s.size();
if (n == 0) return true;
if (n == 1) return false;
stack<char> st;
for (int i = 0; i < n; i++) {
if (s[i] == '(' || s[i] == '[' || s[i] == '{') {
st.push(s[i]);
} else {
char ch = s[i];
if (st.empty()) {
return false;
}
if ((ch == ')' && st.top() != '(') || (ch == ']' && st.top() != '[') ||
(ch == '}' && st.top() != '{')) {
return false;
} else {
st.pop();
}
}
}
return st.empty() ? true : false;
}
};