使用堆栈算法的括号/方括号匹配
2022-09-01 03:25:06
例如,如果括号/方括号在以下位置匹配:
({})
(()){}()
()
等等,但如果括号/方括号不匹配,它应该返回false,例如:
{}
({}(
){})
(()
等等。您能检查一下这个代码吗?提前致谢。
public static boolean isParenthesisMatch(String str) {
Stack<Character> stack = new Stack<Character>();
char c;
for(int i=0; i < str.length(); i++) {
c = str.charAt(i);
if(c == '{')
return false;
if(c == '(')
stack.push(c);
if(c == '{') {
stack.push(c);
if(c == '}')
if(stack.empty())
return false;
else if(stack.peek() == '{')
stack.pop();
}
else if(c == ')')
if(stack.empty())
return false;
else if(stack.peek() == '(')
stack.pop();
else
return false;
}
return stack.empty();
}
public static void main(String[] args) {
String str = "({})";
System.out.println(Weekly12.parenthesisOtherMatching(str));
}