标签:空间复杂度 lin 思路 直接 string inline 种类型 for 空间
给定一个只包括{}()[]
的字符串,判断字符串是否能够成合法的括号序列。
([)]
,所以只好用栈了(实际上用数组模拟了栈)。class Solution {
public:
bool isValid(string s) {
char ok[128];
ok[')'] = '(';
ok[']'] = '[';
ok['}'] = '{';
char a[11111];
int len = s.size(), idx = 0;
for(int i = 0; i < len; ++i)
{
// cout << s[i] << ' ';
if(s[i] == '(' || s[i] == '{' || s[i] == '[')
a[idx++] = s[i];
else
{
if(idx > 0 && ok[s[i]] == a[idx - 1])
--idx;
else
return false;
}
// printf("%c %d\n", s[i], idx);
}
// cout << idx << endl;
return idx == 0;
}
};
我爱水题。
标签:空间复杂度 lin 思路 直接 string inline 种类型 for 空间
原文地址:https://www.cnblogs.com/songjy11611/p/12332922.html