玩转算法面试 leetcode-Valid Parentheses

 玩转算法面试 leetcode-Valid Parentheses_第1张图片

class Solution {
public:
    bool isValid(string s) {
        if(s.empty()) return true;
        
        unordered_map  m{{'{',1},{'}',2},{'(',5},{')',6},{'[',7},{']',8}};
        int j =0;
        for (int i = 0; i 

玩转算法面试 leetcode-Valid Parentheses_第2张图片

超时间了啦,简直没有谁了,omg

学习:

   1、怎么输入字符串:

    string s;
    cin>>s;

 2、怎么定义和使用类

    Solution b;
    b.isValid(s);

3、怎么判断字符串为空:

  if (s.empty()) return true;

你可能感兴趣的:(LeetCode)