用两个栈实现队列
/*
*用两个栈来来实现一个队列。队列的声明如下,请实现它的两个函数appenTail和
* deleteHead,分别完成在队列尾部插入节点和队列头部删除节点的功能。
*/
#include<iostream>
#include<stack>
using namespace std;
template<class T>
class CQueue
{
public:
CQueue() {};
~CQueue() {};
void appendTail(const T& node);
T deleteHead();
private:
stack<T> stack1;
stack<T> stack2;
};
template<class T>
void CQueue<T>::appendTail(const T& node)
{
stack1.push(node);
}
template<class T>
T CQueue<T>::deleteHead()
{
if (stack2.size() <= 0)
{
while (stack1.size() > 0)
{
T& data = stack1.top;
stack1.pop();
stack2.push(data);
}
}
if (stack2.size() <= 0)
{
throw new exception("queue is empty");
}
T head = stack2.top();
stack2.pop();
return head;
}
posted on 2021-11-12 08:47 xcxfury001 阅读(17) 评论(0) 收藏 举报
浙公网安备 33010602011771号