博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Valid Parentheses
阅读量:5243 次
发布时间:2019-06-14

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

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.

括号匹配的问题,使用栈解决。(注意,访问栈元素时要先判断栈是否为空)

C++实现代码如下:

#include
#include
#include
using namespace std;class Solution {public: bool isValid(string s) { size_t index=0; stack
ss; while(index

运行结果:

#include
#include
#include
using namespace std;class Solution{public: bool isValid(string s) { stack
st; int i; for(i=0;i<(int)s.size();i++) { switch(s[i]) { case '(': case '[': case '{': st.push(s[i]); break; case ')': if(st.empty()||st.top()!='(') return false; st.pop(); break; case ']': if(st.empty()||st.top()!='[') return false; st.pop(); break; case '}': if(st.empty()||st.top()!='{') return false; st.pop(); break; } } if(st.empty()) return true; else return false; }};int main(){ Solution s; string str="((()))"; cout<
<

  

转载于:https://www.cnblogs.com/wuchanming/p/4098102.html

你可能感兴趣的文章
Fragment
查看>>
比较安全的获取站点更目录
查看>>
苹果开发者账号那些事儿(二)
查看>>
使用C#交互快速生成代码!
查看>>
UVA11374 Airport Express
查看>>
P1373 小a和uim之大逃离 四维dp,维护差值
查看>>
NOIP2015 运输计划 树上差分+树剖
查看>>
P3950 部落冲突 树链剖分
查看>>
读书汇总贴
查看>>
微信小程序 movable-view组件应用:可拖动悬浮框_返回首页
查看>>
MPT树详解
查看>>
空间分析开源库GEOS
查看>>
RQNOJ八月赛
查看>>
前端各种mate积累
查看>>
jQuery 1.7 发布了
查看>>
Python(软件目录结构规范)
查看>>
Windows多线程入门のCreateThread与_beginthreadex本质区别(转)
查看>>
Nginx配置文件(nginx.conf)配置详解1
查看>>
linux php编译安装
查看>>
name phone email正则表达式
查看>>