今天是新篇章的开始,栈和队列。首先,了解一下栈和队列.
栈
栈被称为先进后出的线性表,这种表只允许在某一端进行进栈和出栈。
栈的实现方式:栈的实现方式有很多,例如,链栈,顺序栈,使用deque实现栈等等,在c++中,存在很多版本的stl库,每个库中的栈的实现各不相同。同时栈不提供走访功能,也不提供迭代器(iterator)。 不像是set 或者map 提供迭代器iterator来遍历所有元素。栈是以底层容器来完成其所有的工作,对外提供统一的接口,底层容器是可插拔的(也就是说我们可以控制使用哪种容器来实现栈的功能)。所以STL中栈往往不被归类为容器,而被归类为container adapter(容器适配器)。
以c++ 默认stl库为例,栈的基础操作有:
stack<int> q;
q.push(); //将数据压入栈顶
q.top(); //返回栈顶的元素
q.pop(); //删除栈顶的元素,无返回值
q.size(); //返回栈中元素的个数
q.empty(); //检查栈是否为空,若为空返回true,否则返回false
队列
队列是一种先进先出的线性表,允许被插入的一端被称为队尾,允许删除的一端被称为队头,向其中插入新元素的称为入队,从队列中删除元素被称为出队。
以c++ 默认stl库为例,栈的基础操作有:
queue<int> q;
q.push() 在队尾插入一个元素
q.pop() 删除队列第一个元素
q.size() 返回队列中元素个数
q.empty() 如果队列空则返回true
q.front() 返回队列中的第一个元素
q.back() 返回队列中最后一个元素
第一题:
思路
队列是一个先进先出的线性表,而栈是一个先进后出的线性表。所以,我们用两个栈模拟先进先出的效果。栈a用来模拟进队列,栈b用来模拟出队列。当栈a要入栈元素时,先将b中元素入栈a在入栈,然后再将a中元素压入b,清空a中元素。
class MyQueue {
public:
MyQueue() {
a = new stack<int>();
b = new stack<int>();
}
void push(int x) {
while(!b->empty()){
a->push(b->top());
b->pop();
}
a->push(x);
while(!a->empty()){
b->push(a->top());
a->pop();
}
}
int pop() {
int aa = b->top();
b->pop();
return aa;
}
int peek() {
return b->top();
}
bool empty() {
if(b->empty()){
return true;
}else{
return false;
}
}
private:
stack<int>* a;
stack<int>* b;
};
题解
题解中和我的思路的差别为,题解不用来回导入元素,减少了资源的浪费。栈a进行入栈,栈b进行出栈,当b为空时将栈a中的元素压入b中,进行后续操作。
class MyQueue {
public:
stack<int> stIn;
stack<int> stOut;
/** Initialize your data structure here. */
MyQueue() {
}
/** Push element x to the back of queue. */
void push(int x) {
stIn.push(x);
}
/** Removes the element from in front of queue and returns that element. */
int pop() {
// 只有当stOut为空的时候,再从stIn里导入数据(导入stIn全部数据)
if (stOut.empty()) {
// 从stIn导入数据直到stIn为空
while(!stIn.empty()) {
stOut.push(stIn.top());
stIn.pop();
}
}
int result = stOut.top();
stOut.pop();
return result;
}
/** Get the front element. */
int peek() {
int res = this->pop(); // 直接使用已有的pop函数
stOut.push(res); // 因为pop函数弹出了元素res,所以再添加回去
return res;
}
/** Returns whether the queue is empty. */
bool empty() {
return stIn.empty() && stOut.empty();
}
};
第二题:
思路
两个队列,一个用于模拟栈出列,入列,一个用于在出列时,储存前面的元素,将最后一个元素pop后再将储存的元素加入队列中。
public:
MyStack() {
}
void push(int x) {
a.push(x);
}
int pop() {
while(a.size() != 1 ){
b.push(a.front());
a.pop();
}
int aa = a.front();
a.pop();
a = b ;
while(!b.empty()){
b.pop();
}
return aa;
}
int top() {
return a.back();
}
bool empty() {
return a.empty();
}
private:
queue<int> a;
queue<int> b;
};
题解
class MyStack {
public:
queue<int> que1;
queue<int> que2; // 辅助队列,用来备份
/** Initialize your data structure here. */
MyStack() {
}
/** Push element x onto stack. */
void push(int x) {
que1.push(x);
}
/** Removes the element on top of the stack and returns that element. */
int pop() {
int size = que1.size();
size--;
while (size--) { // 将que1 导入que2,但要留下最后一个元素
que2.push(que1.front());
que1.pop();
}
int result = que1.front(); // 留下的最后一个元素就是要返回的值
que1.pop();
que1 = que2; // 再将que2赋值给que1
while (!que2.empty()) { // 清空que2
que2.pop();
}
return result;
}
/** Get the top element. */
int top() {
return que1.back();
}
/** Returns whether the stack is empty. */
bool empty() {
return que1.empty();
}
};
总结:
今天对栈和队列进行了浅浅的复习,题目都不难,重在理解栈和队列。