恩,照常打个卡(差点忘记)。。。。
由于比较晚才发现要刷个题(捂脸),所以找了个Easy
的题目——Valid Parentheses
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.
很经典(很简单)的题目——括号匹配,显然用个栈来完成是最简单的了:
恩,好像没什么难度,多注意点细节就好了。
做完之后顺手看了一下Discuss
,看了一下别人的实现,同样是c++,同样的方法,为什么别人写的看起来就很舒服呢?
一起来对比一下:
突然很嫌弃自己的代码风格!!!