leetcode 20 有效的括号 c++

20有效的括号

题目链接:https://leetcode-cn.com/problems/valid-parentheses/

这题没啥难的,用栈一下子就完事了,不过第一次写出测试时间为0ms的代码,还是挺有趣的。

class Solution {
public:
    bool isValid(string s) {
        bool result=true;
        stack tem;
        unordered_map mymap={{')','('},{']','['},{'}','{'}};
        unordered_set myset={'(','[','{'};
        int i=0;
        for(i=0;i

你可能感兴趣的:(leetcode)