
队列
文章平均质量分 80
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 225. Implement Stack using Queues(使用队列来实现栈)
原题网址:https://leetcode.com/problems/implement-stack-using-queues/ Implement the following operations of a stack using queues. push(x) -- Push element x onto stack.pop() -- Removes the element o原创 2016-04-05 03:03:30 · 672 阅读 · 0 评论 -
LeetCode 232. Implement Queue using Stacks(用栈实现队列)
原题网址:https://leetcode.com/problems/implement-queue-using-stacks/ mplement the following operations of a queue using stacks. push(x) -- Push element x to the back of queue.pop() -- Removes the原创 2016-04-05 11:53:58 · 539 阅读 · 0 评论 -
LeetCode 224. Basic Calculator(基本计算器)
原题网址:https://leetcode.com/problems/basic-calculator/ Implement a basic calculator to evaluate a simple expression string. The expression string may contain open ( and closing parentheses ),原创 2016-04-05 02:33:50 · 964 阅读 · 0 评论 -
LeetCode 239. Sliding Window Maximum(滑动窗口最大值)
原题网址:https://leetcode.com/problems/sliding-window-maximum/ Given an array nums, there is a sliding window of size k which is moving from the very left of the array to the very right. You can only原创 2016-04-06 12:53:10 · 5997 阅读 · 0 评论 -
LeetCode 362. Design Hit Counter(计数器)
原题网址:https://leetcode.com/problems/design-hit-counter/ Design a hit counter which counts the number of hits received in the past 5 minutes. Each function accepts a timestamp parameter (in seco原创 2016-06-23 00:45:16 · 2390 阅读 · 0 评论