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

20 Valid Parentheses

时间:2015-07-11 09:08:46      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:leetcode

20 Valid Parentheses

链接: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.

Hide Tags Stack String
Hide Similar Problems (M) Generate Parentheses (H) Longest Valid Parentheses

求小括号,中括号,大括号是否对称使用。

class Solution {
public:
    bool isValid(string s) {
        stack<char> m;
        char c;
        for(int i=0;i<s.length();i++)
        {
          if(s[i]==‘(‘||s[i]==‘[‘||s[i]==‘{‘)
              m.push(s[i]);
          else
          {
             if(m.empty())
                 return false;
             if((m.top()==‘(‘&&s[i]==‘)‘)||(m.top()==‘[‘&&s[i]==‘]‘)||(m.top()==‘{‘&&s[i]==‘}‘))
                 m.pop();
             else
                 return false;

          }
        }
        return m.empty();
    }
};

版权声明:本文为博主原创文章,未经博主允许不得转载。

20 Valid Parentheses

标签:leetcode

原文地址:http://blog.csdn.net/efergrehbtrj/article/details/46838335

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