栈与队列
camlot_
每天一点点的进步
展开
-
[232] Implement Queue using Stacks
使用栈实现队列。只能使用栈提供的push, peek/pop, size和empty方法。原创 2016-07-21 12:46:39 · 416 阅读 · 0 评论 -
[225] Implement Stack using Queues
使用队列实现栈。只能使用队列中的基本方法包括add()offer()/element()peek()/remove()poll()。原创 2016-07-22 15:02:47 · 459 阅读 · 0 评论 -
[20] Valid Parentheses
给定一个字符串,判断字符串中包含的三种括号'(' / '[' / '{'是否是成对的。原创 2016-07-26 11:49:32 · 234 阅读 · 0 评论