zoukankan      html  css  js  c++  java
  • 20. 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.


    模拟操作

    #include <iostream>
    #include <vector>
    #include <set>
    #include <algorithm>
    #include <string>
    #include <sstream>
    #include <cstring>
    #include <cmath>
    #include <stack>
    using namespace std;
    
    class Solution {
    public:
    	bool isValid(string s) {
    		if (s.size() == 1)
    		{
    			return false;
    		}
    		stack<char>sta;
    		char ch;
    		for (auto iter = s.begin(); iter != s.end(); iter++)
    		{
    			ch = *iter;
    			if (ch == '(' || ch == '{' || ch == '[')
    			{
    				sta.push(ch);
    			}
    			else
    			{
    				if (sta.size() == 0)
    				{
    					return false;
    				}
    				ch = sta.top();
    				sta.pop();
    				switch (*iter)
    				{
    				case ')':
    					if (ch != '(')
    					{
    						return false;
    					}
    					break;
    				case '}':
    					if (ch != '{')
    					{
    						return false;
    					}
    					break;
    				case ']':
    					if (ch != '[')
    					{
    						return false;
    					}
    					break;
    				}
    			}
    		}
    		if (sta.size() != 0)
    		{
    			return false;
    		}
    		return true;
    	}
    };
    
    int main()
    {
    	Solution s;
    	cout << s.isValid("[[)") << endl;
    	return 0;
    }


    Keep it simple!
    作者:N3verL4nd
    知识共享,欢迎转载。
  • 相关阅读:
    Badboy参数化
    Badboy运行脚本
    Badboy中创建Suite, test, step和Template
    美食
    Badboy录制模式
    美食
    BadBoy+JMeter来录制和运行Web测试脚本
    JMeter简介及使用JMeter来访问网站
    软件测试的艺术
    泗泾办小卡需要的材料
  • 原文地址:https://www.cnblogs.com/lgh1992314/p/6616319.html
Copyright © 2011-2022 走看看