leetcode 20. Valid Parentheses
Posted prog123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 20. Valid Parentheses相关的知识,希望对你有一定的参考价值。
栈的相关操作。
public class Solution { public boolean isValid(String s) { if(s == "") return true; Stack<Character> st = new Stack<Character>(); st.push(s.charAt(0)); for(int i = 1; i < s.length(); i++){ if(!st.empty() && judge(st.peek(),s.charAt(i))){ st.pop();//peek() 查看栈顶元素,但不取出,pop()取出栈顶元素 } else{ st.push(s.charAt(i)); } } if(st.empty()) return true; return false; } private boolean judge(char a, char b) { if(a == ‘(‘ && b == ‘)‘ || a == ‘[‘ && b == ‘]‘ || a == ‘{‘ && b == ‘}‘) return true; return false; } }
以上是关于leetcode 20. Valid Parentheses的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode - 20. Valid Parentheses
[LeetCode]20. Valid Parentheses
[LeetCode]20 Valid Parentheses 有效的括号