码迷,mamicode.com
首页 > 其他好文 > 详细

【LeetCode 225_数据结构_栈】Implement Stack using Queues

时间:2015-07-08 12:33:47      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

 1 class Stack {
 2 public:
 3     // Push element x onto stack.
 4     void push(int x) {
 5         int len = nums.size();
 6         nums.push(x);
 7         for (int i = 0; i < len; ++i) {
 8             nums.push(nums.front());
 9             nums.pop();
10         }
11     }
12 
13     // Removes the element on top of the stack.
14     void pop() {
15         nums.pop();
16     }
17 
18     // Get the top element.
19     int top() {
20         return nums.front();
21     }
22 
23     // Return whether the stack is empty.
24     bool empty() {
25         return nums.empty();
26     }
27 private:
28     queue<int> nums;
29 };

 

【LeetCode 225_数据结构_栈】Implement Stack using Queues

标签:

原文地址:http://www.cnblogs.com/mengwang024/p/4629694.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!