我的代码适用于普通测试用例,例如(),()[]{},但是在这个问题中有一种情况,如果像so {[]}这样匹配,它允许返回,所以我解决这个问题的方法,我不知道是高效还是快速,也就是找到支架的位置,然后检查长度()-pos所以它本质上是向后看,看看它是否匹配第一个括号,下面是我的代码,请让我知道我的工作方向是否正确,这是否是一个有效的解决方案。
class Solution {
public:
bool isValid(string s) {
stack<int> s1;
size_t pos = 0;
for(int i = 0; i < s.length(); i++) {
s1.push(s[i]);
if(s1.top() == '(' && s[i+1] != ')') {
pos = s.find(s1.top());
if(s1.top() != s.length() - (pos + 1) ) return false;
}
if(s1.top() == '{' && s[i+1] != '}') {
pos = s.find(s1.top());
if(s1.top() != s.length() - (pos + 1) ) return false;
}
if(s1.top() == '[' && s[i+1] != ']') {
pos = s.find(s1.top());
if(s1.top() != s.length() - (pos + 1) ) return false;
}
}
return true;
}
};
2条答案
按热度按时间guz6ccqo1#
当你遇到一个闭方括号时,只需要使用stack来推动开方括号并检查顶部。不要试图同时检查i和i+1的位置。那样会修复你的代码。
j13ufse22#
下面是一个有助于解决您的问题的代码示例: