博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Implement Queue using Stacks(用栈实现队列)
阅读量:7174 次
发布时间:2019-06-29

本文共 3113 字,大约阅读时间需要 10 分钟。

Implement the following operations of a queue using stacks.

  • push(x) -- Push element x to the back of queue.
  • pop() -- Removes the element from in front of queue.
  • peek() -- Get the front element.
  • empty() -- Return whether the queue is empty.
Notes:

  • You must use only standard operations of a stack -- which means only push to toppeek/pop from topsize, and is empty operations are valid.
  • Depending on your language, stack may not be supported natively. You may simulate a stack by using a list or deque (double-ended queue), as long as you use only standard operations of a stack.
  • You may assume that all operations are valid (for example, no pop or peek operations will be called on an empty queue).

  • 题目解析:
  • 用堆栈stack实现队列,仅仅能使用堆栈的操作,push(),pop()。empty().

  • 方法:
  • 用两个堆栈实现。代码例如以下:
  • class Queue {public:    stack
    st1; stack
    st2; bool st1_use=1; bool st2_use=0; // Push element x to the back of queue. void push(int x) { if(st1_use==1) st1.push(x); else if(st2_use==1) st2.push(x); } // Removes the element from in front of queue. void pop(void) { if(st1.empty()&&st2.empty()) exit(0); if(st1_use==1&&st2_use==0) { while(st1.size()>1) { int temp=st1.top(); st2.push(temp); st1.pop(); } st1.pop(); while(st2.size()>0) { int temp=st2.top(); st1.push(temp); st2.pop(); } st1_use==1; st2_use==0; return; } if(st1_use==0&&st2_use==1) { while(st2.size()>1) { int temp=st2.top(); st1.push(temp); st2.pop(); } st2.pop(); while(st1.size()>0) { int temp=st1.top(); st2.push(temp); st1.pop(); } st1_use==0; st2_use==1; return; } } // Get the front element. int peek(void) { if(st1_use==1&&st2_use==0) { int temp; while(st1.size()>0) { temp=st1.top(); st2.push(temp); st1.pop(); } while(st2.size()>0) { int temp1=st2.top(); st1.push(temp1); st2.pop(); } st1_use==1; st2_use==0; return temp; } if(st1_use==0&&st2_use==1) { int temp; while(st2.size()>0) { int temp=st2.top(); st1.push(temp); st2.pop(); } while(st1.size()>0) { int temp1=st1.top(); st2.push(temp1); st1.pop(); } st1_use==0; st2_use==1; return temp; } } // Return whether the queue is empty. bool empty(void) { if(st1_use==1&&st1.empty()) return true; if(st2_use==1&&st2.empty()) return true; return false; }};

转载地址:http://msbzm.baihongyu.com/

你可能感兴趣的文章
检验新买内存条的真假
查看>>
解密:华为的敏捷网络是SDN吗
查看>>
u16 u32 __u16 __u32 u_int16_t u_int32_t
查看>>
android: BaseAdapter和ListView简单运用(08)
查看>>
自带内存上的读写(openFileOutput和openFileInput)
查看>>
服务器搭建:3.2、openresty图片压缩之 lua调用GraphicsMagick
查看>>
bash 脚本编程 变量、变量类型 (笔记)
查看>>
win7 管理员权限
查看>>
docker下redis集群搭建
查看>>
composer出现proc_open,fileinfo问题
查看>>
无ROWID优化(The WITHOUT ROWID Optimization)
查看>>
Android第七课 探索Activity的生命周期
查看>>
求排列
查看>>
Cisco-CCNP之OSPF链路状态路由协议(三)
查看>>
CentOS 7 系列(一)系统服务 systemd
查看>>
Hive 数据倾斜总结
查看>>
mysql查询结果处理
查看>>
扫描识别控件Dynamic Web TWAIN v12.3.1发布,更新服务证书丨附下载
查看>>
VintaSoft PDF插件VintaSoftPDF.NET Plug-in更新至v5.6,新增多页查看模式
查看>>
windows环境中不重启电脑杀死占用某个端口的进程
查看>>