题解 | #有效括号序列#
有效括号序列
https://www.nowcoder.com/practice/37548e94a270412c8b9fb85643c8ccc2
/*
HW栈1 括号序列
*/
#include <bits/stdc++.h>
class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param s string字符串
* @return bool布尔型
*/
static bool isbro(char x,char y)
{
if(min(x,y)=='('&& max(x,y)==')')return true;
if(min(x,y)=='{'&& max(x,y)=='}')return true;
if(min(x,y)=='['&& max(x,y)==']')return true;
return false;
}
bool isValid(string s) {
// write code here
stack<char>st;
if(s.length()==0||s.length()==1)return false;
st.push(s[0]);
for(int i=1;i<s.length();i++){
if(st.empty()){
st.push(s[i]);
continue;
}
if(isbro(st.top(), s[i]))st.pop();
else{
st.push(s[i]);
}
}
if(st.empty())return true;
return false;
}
};