首页 > 其他 > 详细

【LeetCode OJ 20】Valid Parentheses

时间:2016-02-24 09:41:50      阅读:234      评论:0      收藏:0      [点我收藏+]

题目链接:https://leetcode.com/problems/valid-parentheses/

题目:Given a string containing just the characters ‘(‘‘)‘‘{‘‘}‘‘[‘ and ‘]‘, determine if the input string is valid.

The brackets must close in the correct order, "()" and "()[]{}" are all valid but "(]" and "([)]" are not.

解题思路:括号匹配问题是典型的栈的应用题,示例代码如下:

public class Solution 
{
	public boolean isValid(String s) 
	{
		Stack<Character> temp=new Stack<Character>();
		boolean flag=true;
		for(int i=0;i<s.length();i++)
		{
			/**
			 * 遇到'('、'['、'{'均入栈,遇到')'、']'、'}'则检查栈顶元素是否与之匹配
			 */
			switch (s.charAt(i))
			{
			case '(':
				temp.push('(');
				break;
			case '[':
				temp.push('[');
				break;
			case '{':
				temp.push('{');
				break;
			case ')':
				if(temp.isEmpty()||temp.pop()!='(')
				{
					flag=false;
				}
				break;
			case ']':
				if(temp.isEmpty()||temp.pop()!='[')
				{
					flag=false;
				}
				break;
			case '}':
				if(temp.isEmpty()||temp.pop()!='{')
				{
					flag=false;
				}
				break;
			default:
				break;
			}
			if(!flag)
				break;
		}
		if(flag&&temp.isEmpty())
			return true;
		else
			return false;
	}
}


【LeetCode OJ 20】Valid Parentheses

原文:http://blog.csdn.net/xujian_2014/article/details/50726008

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!