之前的一段时间,我们共同学习了STL中一些容器,如string、vector和list等等。本章我们将步入新阶段的学习——容器适配器。本章将详解stack、queue的使用和模拟实现+优先级队列(附仿函数)+容器适配器等。
目录
(一)stack的使用和模拟实现
(1)stack的使用
1、stack的介绍
2、stack的使用
(2)经典OJ题(最小栈、栈的弹出与压入序列、逆波兰表达式)
(3)stack的模拟实现
(二)queue的使用和模拟实现
(1)queue的使用
1、queue的介绍
2、queue的使用
(2)queue的模拟实现
(三)优先级队列(priority_queue)的使用、介绍和模拟实现
(1)优先级队列的介绍
(2)优先级队列的使用
(3)仿函数的介绍
(4)优先级队列的模拟实现
(四)容器适配器
(1)容器适配器的定义
(2)stack、queue的底层架构——deque
(3)deque的介绍
stack文档
我们查文档得:
其实这些操作我们在C语言数据结构中已经详细学过了,这里主要是复习一下。
操作大家都很熟悉啦,这里作者就浅浅演示一下如何历遍栈中的元素吧。
历遍栈中元素:
void test_stack()
{
std::stack> s;
s.push(1);
s.push(2);
s.push(3);
s.push(4);
while (!s.empty())
{
cout << s.top() << " ";
s.pop();
}
cout << endl;
}
输出为:4 3 2 1
力扣https://leetcode.cn/problems/min-stack/
这道题我们要着重考虑的是如何获取栈中最小的元素。
思路:
代码:
class MinStack {
public:
MinStack() {
}
void push(int val) {
_st.push(val);
if(_minst.empty()||val<=_minst.top())
{
_minst.push(val);
}
}
void pop() {
if(_minst.top()==_st.top())
{_st.pop();
_minst.pop();
}
else
_st.pop();
}
int top() {
return _st.top();
}
int getMin() {
return _minst.top();
}
private:
stack _st;
stack _minst;
};
===============================================================
栈的压入、弹出序列_牛客题霸_牛客网【牛客题霸】收集各企业高频校招笔面试题目,配有官方题解,在线进行百度阿里腾讯网易等互联网名企笔试面试模拟考试练习,和牛人一起讨论经典试题,全面提升你的技术能力https://www.nowcoder.com/practice/d77d11405cc7470d82554cb392585106?tpId=13&&tqId=11174&rp=1&ru=/activity/oj&qru=/ta/coding-interviews/question-ranking
这和我们数据结构中的一类选择题很像。
思路为:
题目要我们判断两个序列是否符合入栈出栈的次序,我们就可以用一个栈来模拟。对于入栈序列,只要栈为空,序列肯定要依次入栈。那什么时候出来呢?自然是遇到一个元素等于当前的出栈序列的元素,那我们就放弃入栈,让它先出来。
写法:
我们创建一个栈,按照入栈顺序入,每次入栈时对比栈顶和出栈顺序是否一样,一样则弹出(出栈的序列往后加一),然后进行下一次循环比对。最后判断栈是否为空即可或者是否走到了出栈序列的末尾。
class Solution {
public:
bool IsPopOrder(vector pushV,vector popV) {
int pushi=0;
int popi=0;
stack st;
while(pushi
===============================================================
力扣https://leetcode.cn/problems/evaluate-reverse-polish-notation/
前言:我们平时的运算表达式都是中缀表达式,如:
中缀表达式我们人可以看懂,但机器不能,所以要设计一套机器能读懂的表达式,即逆波兰表达式,也称后缀表达式。
上面的中缀表示式转化成后缀表达式是2 1 + 3 *
转化流程如下:
我们有固定的一套逻辑:
流程图:
那么逆波兰表达式怎么求值呢?
逆波兰表达式求值过程也相对固定,用到了我们的栈:
这道题的思路就是这样,代码如下:
class Solution {
public:
int evalRPN(vector& tokens) {
stack s1;
for(int i=0;i
amespace zc
{
template>
class stack
{
public:
void push(const T& x)
{
_con.push_back(x);
}
void pop()
{
_con.pop_back();
}
const T& top()
{
return _con.back();
}
size_t size()
{
return _con.size();
}
bool empty()
{
return _con.empty();
}
private:
Container _con;
};
我们查文档得:
这些接口的使用方法:
使用的代码:
void test_queue()
{
queue q;
q.push(1);
q.push(2);
q.push(3);
q.push(4);
//不支持迭代器了,因为栈让随便遍历是不好的
//后进先出不好保证,性质就无法维护了
while (!q.empty())
{
cout << q.front() << " ";
q.pop();
}
cout << endl;
}
输出的结果1 2 3 4(符合先进先出)
namespace zc
{
template>
class queue
{
public:
void push(const T& x)
{
_con.push_back(x);
}
void pop()
{
_con.pop_front();
}
const T& front()
{
return _con.front();
}
const T& back()
{
return _con.back();
}
size_t size()
{
return _con.size();
}
bool empty()
{
return _con.empty();
}
private:
Container _con;
};
我们查文档可知:
操作使用代码:
//底层是个堆(默认是个大堆) -- 底层用了vector
void test_priority_queue()
{
//greater库里写好了的仿函数
priority_queue, greater> pq;
pq.push(2);
pq.push(5);
pq.push(1);
pq.push(6);
pq.push(8);
while (!pq.empty())
{
cout << pq.top() << " ";
pq.pop();
}
cout << endl;
}
注意:
默认仿函数传的是less 仿函数,默认是大堆
说到这里,什么是仿函数呢???这个模板参数的本质是什么呢?我们来进一步的探索:
仿函数 – 更高维度的泛型思想(不仅是数据类型的控制,更是逻辑的控制)
在使用仿函数之前,我们要包一下头文件#include< functional > 这个头文件
什么是仿函数:
看着像函数名,其实是个对象, 可以像调用函数一样去使用,实际上调用的是运算符重载。
我们以greater为例:
他是一个类,类中重载了(),所以可以像调用函数一样来调用这个类对象。
我们以sort函数为例:
这里就用到了仿函数(其实有点类似函数指针)
注意:
例:
我们自定义一个日期类,这里要用到仿函数就必须我们呢自己重载>、<了:
class Date
{
public:
Date(int year = 1900, int month = 1, int day = 1)
: _year(year)
, _month(month)
, _day(day)
{}
bool operator<(const Date& d)const
{
return (_year < d._year) ||
(_year == d._year && _month < d._month) ||
(_year == d._year && _month == d._month && _day < d._day);
}
bool operator>(const Date& d)const
{
return (_year > d._year) ||
(_year == d._year && _month > d._month) ||
(_year == d._year && _month == d._month && _day > d._day);
}
friend ostream& operator<<(ostream& _cout, const Date& d)
{
_cout << d._year << "-" << d._month << "-" << d._day;
return _cout;
}
private:
int _year;
int _month;
int _day;
};
class PDateLess
{
public:
bool operator()(const Date* p1, const Date* p2)
{
return *p1 < *p2;
}
};
class PDateGreater
{
public:
bool operator()(const Date* p1, const Date* p2)
{
return *p1 > *p2;
}
};
void test_priority_queue2()
{// 大堆,需要用户在自定义类型中提供<的重载
priority_queue date;
date.push(Date(2023,4,1));
date.push(Date(2023, 4, 7));
date.push(Date(2023, 4, 2));
date.push(Date(2023, 4, 4));
while (!date.empty())
{
cout << date.top()<< " ";
date.pop();
}
cout << endl;
priority_queue,PDateGreater> date1;
date1.push(new Date(2023, 4, 1));
date1.push(new Date(2023, 4, 7));
date1.push(new Date(2023, 4, 2));
date1.push(new Date(2023, 4, 4));
cout << *(date1.top()) << endl;
}
补充:
其实主要就是堆的模拟实现的底层构想————>之前博主的博文:堆的模拟实现
主要是插入push的操作和弹出pop的操作的实现方法:
namespace zc
{
//仿函数/函数对象
template
struct less
{
bool operator()(const T& x,const T& y)
{
return x < y;
}
};
template
struct greater
{
bool operator()(const T& x, const T& y)
{
return x > y;
}
};
template,class Compare=less>
class priority_queue
{
public:
void adjust_up(int child)
{
int parent = (child - 1) / 2;
Compare com;
while (child>0)
{
if (com(_con[parent],_con[child]))
{
swap(_con[child], _con[parent]);
child = parent;
parent = (child - 1) / 2;
}
else
{
break;
}
}
}
void adjust_down(int parent)
{
int child = parent * 2 + 1;
while (child < _con.size())
{
Compare com;
if (child + 1 < _con.size() && com(_con[child], _con[child + 1]))
{
child++;
}
if (com(_con[parent], _con[child]))
{
swap(_con[parent], _con[child]);
parent = child;
child = parent * 2 + 1;
}
else
{
break;
}
}
}
void push(const T& x)
{
_con.push_back(x);
adjust_up(_con.size()-1);
}
const T& top()
{
return _con[0];
}
size_t size()
{
return _con.size();
}
void pop()
{
swap(_con[0], _con[_con.size() - 1]);
_con.pop_back();
adjust_down(0);
}
bool empty()
{
return _con.empty();
}
private:
Container _con;
};
那deque是如何借助其迭代器维护其假想连续的结构呢?
所以库中stack和queue的容器适配器接口是deque,而不是vector和list:
stack为例:
namespace zc
{
template>
class stack
{
public:
void push(const T& x)
{
_con.push_back(x);
}
void pop()
{
_con.pop_back();
}
const T& top()
{
return _con.back();
}
size_t size()
{
return _con.size();
}
bool empty()
{
return _con.empty();
}
private:
Container _con;
};