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.
class Solution {
public:
bool isValid(std::string s) {
std::stack<char> st;
for (int i = 0; i < s.size(); i++)
{
if(s[i] == '(' || s[i] == '[' || s[i] == '{') st.push(s[i]);
else if(s[i] == ')')
{
if(st.empty()) return false;
if(s[i] == ')' && st.top() == '(')
st.pop();
else
return false;
}
else if(s[i] == ']')
{
if(st.empty()) return false;
if(s[i] == ']' && st.top() == '[')
st.pop();
else
return false;
}
else if(s[i] == '}')
{
if(st.empty()) return false;
if(s[i] == '}' && st.top() == '{')
st.pop();
else
return false;
}
else
{
return false;
}
}
if(st.empty())
return true;
else
return false;
}
};