当前位置:网站首页>Summary of one question per day: stack and queue (continuously updated)
Summary of one question per day: stack and queue (continuously updated)
2022-07-02 08:09:00 【Villanelle#】
20. Valid parenthesis disorder map、 Stack 2021/11/21
Given one only includes ‘(’,’)’,’{’,’}’,’[’,’]’ String s , Determines whether the string is valid .
Valid string needs to meet : Opening parentheses must be closed with closing parentheses of the same type . The left parenthesis must be closed in the correct order .
Example :
Input :s = “()[]{}”
Output :true
Input :s = “([)]”
Output :false
Use unordered_map Unordered Association container . Take advantage of the first in and last out nature of the stack , Traversal string , If ([{ Then push it onto the stack , Otherwise )]}, See whether the element at the top of the stack is its corresponding value , If yes, pop up the stack top element , Finally, if the stack is empty after traversal, it is regarded as valid .
class Solution {
public:
bool isValid边栏推荐
- jetson nano安装tensorflow踩坑记录(scipy1.4.1)
- Carsim problem failed to start Solver: Path Id Obj (X) was set to y; Aucune valeur de correction de xxxxx?
- How to wrap qstring strings
- 简易打包工具的安装与使用
- 将恶意软件嵌入到神经网络中
- 【MobileNet V3】《Searching for MobileNetV3》
- Open3d learning notes II [file reading and writing]
- Open3d learning note 4 [surface reconstruction]
- 包图画法注意规范
- Open3d learning note 5 [rgbd fusion]
猜你喜欢
随机推荐
Carla-ue4editor import Roadrunner map file (nanny level tutorial)
Carsim-实时仿真的动画同步问题
Wang extracurricular words
JVM instructions
Jupyter Notebook常用快捷键(在命令模式中按H也可查看)
王-课外单词
Vscode下中文乱码问题
解决jetson nano安装onnx错误(ERROR: Failed building wheel for onnx)总结
C # connect to MySQL database
AR system summary harvest
Library function of C language
My VIM profile
【MobileNet V3】《Searching for MobileNetV3》
高中数学必修一
Global and Chinese market of tillage finishing machines 2022-2028: Research Report on technology, participants, trends, market size and share
笔记本电脑卡顿问题原因
【MagNet】《Progressive Semantic Segmentation》
SQLyog远程连接centos7系统下的MySQL数据库
CVPR19-Deep Stacked Hierarchical Multi-patch Network for Image Deblurring论文复现
Global and Chinese markets for magnetic resonance imaging (MRI) transmission 2022-2028: Research Report on technology, participants, trends, market size and share









