码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode练习:20. Valid Parentheses

时间:2017-10-20 18:21:04      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:put   racket   fun   val   har   and   pre   ini   rac   

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.

var isValid = function(s) {
    var a = [];
    var len = s.length;
    var temp;
    
    if(len == 1) {
        return false;
    }
    
    for(var i=0;i<len;i++) {
        if(s[i] == ‘(‘ || s[i] == ‘{‘ || s[i] == ‘[‘) {
            a.unshift(s[i]);
        }
        
        if(s[i] == ‘)‘ ) {
            temp = a.shift();
            if(temp != ‘(‘)
                return false;
        }

        if(s[i] == ‘}‘ ) {
            temp = a.shift();
            if(temp != ‘{‘)
                return false;
        }

        if(s[i] == ‘]‘ ) {
            temp = a.shift();
            if(temp != ‘[‘)
                return false;
        }
    }
    
    if(a.length)
        return false;
    else 
        return true;
};

 

leetcode练习:20. Valid Parentheses

标签:put   racket   fun   val   har   and   pre   ini   rac   

原文地址:http://www.cnblogs.com/rimochiko/p/7700117.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!