博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
用两个栈实现一个队列
阅读量:5010 次
发布时间:2019-06-12

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

用两个栈实现一个队列

1 #include
2 #include
3 #include
4 using namespace std; 5 6 template
class CQueue 7 { 8 public: 9 CQueue(void);10 ~CQueue(void);11 void appendtail(const T& node);12 T deleteHead();13 private:14 stack
stack1;15 stack
stack2;16 17 };18 19 //构造函数20 template
CQueue
::CQueue(void)21 {22 }23 24 //析构函数25 template
CQueue
::~CQueue(void)26 {27 }28 29 //插入元素30 template
void CQueue
::appendtail(const T& node)31 {32 stack1.push(node);33 }34 35 //删除元素并返回36 template
T CQueue
::deleteHead()37 {38 if(stack2.size()<=0)39 {40 while(stack1.size()>0)41 {42 stack2.push(stack1.top());43 stack1.pop();44 }45 }46 if(stack2.size()==0)47 throw new exception("队列为空");48 T head=stack2.top();49 stack2.pop();50 return head;51 }52 53 void main()54 {55 CQueue
queue;56 queue.appendtail(1);57 queue.appendtail(2);58 queue.appendtail(3);59 queue.appendtail(4);60 int len=4;61 while(len>0)62 {63 cout<
<

 

转载于:https://www.cnblogs.com/wxdjss/p/5450969.html

你可能感兴趣的文章
Path元素
查看>>
php_soap扩展应用
查看>>
第二百三十一节,Bootstrap 介绍
查看>>
vi/vim 三种模式的操作
查看>>
JAVA面向对象三大特性总结
查看>>
guid
查看>>
Python中出现“TabError: inconsistent use of tabs and spaces in indentation”问题的解决
查看>>
ajax请求
查看>>
js学习总结----DOM增删改和应用
查看>>
希尔伯特矩阵(Hilbert matrix)
查看>>
(20)sopel算法
查看>>
学习总结 javascript 闭包
查看>>
实验吧一个小坑注入
查看>>
【 D3.js 高级系列 — 8.0 】 打标
查看>>
Mac必备软件推荐
查看>>
Android Gson深入分析
查看>>
display:flow-root
查看>>
判读字符串是否为空的全局宏-分享
查看>>
iOS中Block的基础用法
查看>>
mac 终端 使用ftp命令
查看>>