您的位置:首页 > 其它

[leetcode] 20. Valid Parentheses

2016-07-28 09:58 302 查看
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.

解法一:

使用一个stack,将左括号push到这个stack里面。如果当前符号为右括号,如果stack为空,直接返回false,不然看它和stack中top的符号是否match。如果match,将top推出,并继续读取符号。

class Solution {
public:
bool isValid(string s) {
stack<char> left;

for(int i =0; i<s.size(); i++){
if (s[i]=='('||s[i]=='['||s[i]=='{')
left.push(s[i]);
else if (s[i]==')'||s[i]==']'||s[i]=='}'){
if(left.empty()) return false;
else{
if (left.top()!=match_pair(s[i])) return false;
else left.pop();
}
}
}
return left.empty();
}

char match_pair(char c){
if (c==')')
return '(';
else if (c==']')
return '[';
else
return '{';
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  easy leetcode