博客
关于我
LeetCode刷题(6)--有效的括号
阅读量:143 次
发布时间:2019-02-26

本文共 884 字,大约阅读时间需要 2 分钟。

?????????????????????????????????????????????????

  • ???????

    • ???????????? true?
    • ??????????????? false??????????
  • ?????

    • ?? stack<char> ??????????????
  • ??????

    • ?????????????
      • ?????? ('(', '{', '[')??????????????
      • ?????? (')', '}', ']')??????????????
        • ????????????? false?
        • ???????????????
  • ??????

    • ?????????????????????????? false?
    • ????? true?
  • ?????????????????????????????????? O(n)??? n ?????????????? O(n)?

    #include 
    #include
    using namespace std;bool EffectiveBrackets(string s) { if (s.empty()) return true; if (s.size() % 2 != 0) return false; stack
    st; for (char c : s) { if (c == '(' || c == '{' || c == '[') { st.push(c == '(' ? ')' : (c == '{' ? '}' : ']')); } else { if (st.empty() || st.top() != c) { return false; } st.pop(); } } return st.empty();}

    转载地址:http://kiuy.baihongyu.com/

    你可能感兴趣的文章
    Nginx 常用配置清单
    查看>>
    nginx 常用配置记录
    查看>>
    nginx 开启ssl模块 [emerg] the “ssl“ parameter requires ngx_http_ssl_module in /usr/local/nginx
    查看>>
    Nginx 我们必须知道的那些事
    查看>>
    Nginx 的 proxy_pass 使用简介
    查看>>
    Nginx 的配置文件中的 keepalive 介绍
    查看>>
    Nginx 结合 consul 实现动态负载均衡
    查看>>
    Nginx 负载均衡与权重配置解析
    查看>>
    Nginx 负载均衡详解
    查看>>
    nginx 配置 单页面应用的解决方案
    查看>>
    nginx 配置https(一)—— 自签名证书
    查看>>
    nginx 配置~~~本身就是一个静态资源的服务器
    查看>>
    Nginx 配置清单(一篇够用)
    查看>>
    Nginx 配置解析:从基础到高级应用指南
    查看>>
    nginx+php的搭建
    查看>>
    nginx+tomcat+memcached
    查看>>
    nginx+Tomcat性能监控
    查看>>
    nginx+uwsgi+django
    查看>>
    Nginx-http-flv-module流媒体服务器搭建+模拟推流+flv.js在前端html和Vue中播放HTTP-FLV视频流
    查看>>
    nginx-vts + prometheus 监控nginx
    查看>>