leetcode 20. Valid Parentheses

一 题目

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

An input string is valid if:

  1. Open brackets must be closed by the same type of brackets.
  2. Open brackets must be closed in the correct order.

Note that an empty string is also considered valid.

Example 1:

Input: "()"
Output: true

Example 2:

Input: "()[]{}"
Output: true

Example 3:

Input: "(]"
Output: false

Example 4:

Input: "([)]"
Output: false

Example 5:

Input: "{[]}"
Output: true

二 分析

  题目要求判断字符串里面括号是否匹配,题目easy级别。

终于遇到一个看题目就知道怎么做的了,首先想到就是栈 ,遍历字符串,如果是左侧的括号就入栈,否则就出栈,与当前字符判断是否匹配。唯一注意的是边界条件.如“]”这种只有右侧没有左侧的。

public static void main(String[] args) {
		System.out.println(isValid("]"));
		System.out.println(isValid("()[]{}"));
		System.out.println(isValid("(]"));
		System.out.println(isValid("([)]"));
		System.out.println(isValid("{[]}"));
	}
	
	 public static boolean isValid(String s) {
		 Map<Character,Character> map = new HashMap();
		 map.put(')', '(');
		 map.put(']', '[');
		 map.put('}', '{');
		 Stack stack = new Stack();
		 if(s==""){
			 return true;
		 }
		 for(char c:s.toCharArray()){
			 if(c=='('||c=='['||c=='{'){
				 stack.push(c);
			 }
			 else {//coner case
				 if(stack.isEmpty()){
					 return false;
				 }
				 //rule
				 char pre = (char) stack.pop();
				  if(map.get(c)==null|| map.get(c)!=pre){
					  return false;
				  }
			 }
		 }		 
		 return stack.isEmpty();		 
	 }

Runtime: 2 ms, faster than 60.59% of Java online submissions for Valid Parentheses.

Memory Usage: 34.1 MB, less than 100.00% of Java online submissions for Valid Parentheses.

官网的solution也是stack,比我写的好。感兴趣的可以去官网在看看。

时间复杂度:O(N).

空间复杂度:O(N).

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值