题解 | #有效括号序列#

有效括号序列

https://www.nowcoder.com/practice/37548e94a270412c8b9fb85643c8ccc2

using System;
using System.Collections.Generic;


class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     *
     * @param s string字符串
     * @return bool布尔型
     */
    public bool isValid (string s) {
        // write code here
        if (string.IsNullOrWhiteSpace(s) || s.Length == 0)
            return true;
        List<char> listC = new List<char>() {
            s[0]
        };
        for (int nIndex = 1; nIndex < s.Length; nIndex++) {
            char c = s[nIndex];
            if (c == '(' || c == '[' || c == '{')
                listC.Add(c);
            else {
                if (listC.Count == 0)
                    return false;
                if ((listC[listC.Count - 1] == '(' && c == ')')
                        || (listC[listC.Count - 1] == '[' && c == ']')
                        || (listC[listC.Count - 1] == '{' && c == '}'))
                    listC.RemoveAt(listC.Count - 1);
                else
                    break;
            }
        }
        return listC.Count > 0 ? false : true;
    }
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
11-21 17:16
科大讯飞 算法工程师 28.0k*14.0, 百分之三十是绩效,惯例只发0.9
点赞 评论 收藏
分享
牛舌:如果我不想去,不管对方给了多少,我一般都会说你们给得太低了。这样他们就会给下一个offer的人更高的薪资了。
点赞 评论 收藏
分享
object3:开始给部分🌸孝子上人生第一课了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务