赞
踩
之前数据结构中是栈和队列,我们分别用的顺序表和链表去实现的,但是对于这里的栈和队列来说,他们是一种容器,更准确来说是一种容器适配器
从他们的模板参数可以看出,第二个参数模板是一个容器,并不像vector和list一样是一个内存池
至于deque后面会介绍
这里写传容器的原因就是,栈和队列是直接复用了其他的容器,用他们的功能实现自己的功能,就比如每家的电压和自己手机充电器的电压是不一样的,但是我用一个适配器就可以转换出来
1. stack是一种容器适配器,专门用在具有后进先出操作的上下文环境中,其删除只能从容器的一端进行元素的插入与提取操作。
2. stack是作为容器适配器被实现的,容器适配器即是对特定类封装作为其底层的容器,并提供一组特定的成员函数来访问其元素,将特定类作为其底层的,元素特定容器的尾部(即栈顶)被压入和弹出。
3. stack的底层容器可以是任何标准的容器类模板或者一些其他特定的容器类,这些容器类应该支持以下操作:
empty:判空操作
back:获取尾部元素操作
push_back:尾部插入元素操作
pop_back:尾部删除元素操作
4. 标准容器vector、deque、list均符合这些需求,默认情况下,如果没有为stack指定特定的底层容器,默认情况下使用deque。
Stack是没有迭代器的,因为栈不能说是去遍历每个元素,而是后进先出的结构,所以设计迭代器没有任何意义,虽然可以去设计
对于之前数据结构来说,我们需要自己写一个栈,这里就直接引入头文件就行。
- #define _CRT_SECURE_NO_WARNINGS 1
- #include<iostream>
- #include<vector>
- #include<list>
- #include<stack>
- using namespace std;
- int main()
- {
- stack<int> st;
- st.push(1);
- st.push(2);
- st.push(3);
- st.push(4);
- st.push(5);
- int n = st.size();
- while (n--)
- {
- cout << st.top() << " ";
- st.pop();
- }
- cout << endl;
- }
这里只是一个简单的演示
下面来做一个题目:
提示
设计一个支持
push
,pop
,top
操作,并能在常数时间内检索到最小元素的栈。实现
MinStack
类:
MinStack()
初始化堆栈对象。void push(int val)
将元素val推入堆栈。void pop()
删除堆栈顶部的元素。int top()
获取堆栈顶部的元素。int getMin()
获取堆栈中的最小元素。示例 1:
输入: ["MinStack","push","push","push","getMin","pop","top","getMin"] [[],[-2],[0],[-3],[],[],[],[]] 输出: [null,null,null,null,-3,null,0,-2] 解释: MinStack minStack = new MinStack(); minStack.push(-2); minStack.push(0); minStack.push(-3); minStack.getMin(); --> 返回 -3. minStack.pop(); minStack.top(); --> 返回 0. minStack.getMin(); --> 返回 -2.提示:
-231 <= val <= 231 - 1
pop
、top
和getMin
操作总是在 非空栈 上调用push
,pop
,top
, andgetMin
最多被调用3 * 104
次
思路:
对于这道题目来说,要拿出最小的那个元素,那么我们必须去记录,如果我们用一个变量去保存这个最小值肯定是不行的,因为我们用这个变量保存一个最小值以后,然后我们再删这个最小值,那当前最小就不知道是谁了,得重新来一遍,这样虽然可行,但是在时间效率上可能会很低
所以解决这道题可以用两个栈去模拟,一个栈存最小值,一个栈做为入栈,只要比最小栈的最小元素还小的时候(就是栈顶元素)就可以加入到这个最小栈里面,我们删除数据的时候,如果删除的数据和栈顶元素相等,那么我们把最小栈的元素删除,否则不动。
有了思路,现在来写代码就简单很多了
- class MinStack {
- public:
- MinStack() {
-
- }
-
- void push(int val) {
- _elem.push(val);//先入
- if(_min.empty()||val<=_min.top())//如果最小栈是空或者当前值比最小栈的栈顶元素还小就加入
- {
- _min.push(val);
- }
- }
-
- void pop() {
- if(_elem.top()==_min.top())//相等就一起删,最后最小栈栈顶元素就是最小的
- {
- _min.pop();
- }
- _elem.pop();
- }
-
- int top() {
- return _elem.top();//其他函数按规则来就行
- }
-
- int getMin() {
- return _min.top();
- }
- private:
- std::stack<int> _elem;//设置两个栈
- std::stack<int> _min;
-
- };
-
- /**
- * Your MinStack object will be instantiated and called as such:
- * MinStack* obj = new MinStack();
- * obj->push(val);
- * obj->pop();
- * int param_3 = obj->top();
- * int param_4 = obj->getMin();
- */
1. 队列是一种容器适配器,专门用于在FIFO上下文(先进先出)中操作,其中从容器一端插入元素,另一端提取元素。
2. 队列作为容器适配器实现,容器适配器即将特定容器类封装作为其底层容器类,queue提供一组特定的成员函数来访问其元素。元素从队尾入队列,从队头出队列。
3. 底层容器可以是标准容器类模板之一,也可以是其他专门设计的容器类。该底层容器应至少支持以下操作 :
empty:检测队列是否为空
size:返回队列中有效元素的个数
front:返回队头元素的引用
back:返回队尾元素的引用
push_back:在队列尾部入队列
pop_front:在队列头部出队列
4. 标准容器类deque和list满足了这些要求。默认情况下,如果没有为queue实例化指定容器类,则使用标准容器deque。
- #define _CRT_SECURE_NO_WARNINGS 1
- #include<iostream>
- #include<vector>
- #include<list>
- #include<stack>
- #include<queue>
- using namespace std;
- int main()
- {
- queue<int>q;
- q.push(1);
- q.push(2);
- q.push(3);
- q.push(4);
- int n = q.size();
- while (n--)
- {
- cout << q.front() << " ";
- q.pop();
- }
- cout << endl;
- return 0;
- }
1. 优先队列是一种容器适配器,根据严格的弱排序标准,它的第一个元素总是它所包含的元素中最大的。
2. 此上下文类似于堆,在堆中可以随时插入元素,并且只能检索最大堆元素(优先队列中位于顶部的元 素)。
3. 优先队列被实现为容器适配器,容器适配器即将特定容器类封装作为其底层容器类,queue提供一组特定的成员函数来访问其元素。元素从特定容器的“尾部”弹出,其称为优先队列的顶部。
4. 底层容器可以是任何标准容器类模板,也可以是其他特定设计的容器类。容器应该可以通过随机访问迭代器访问,并支持以下操作:
empty():检测容器是否为空
size():返回容器中有效元素个数
front():返回容器中第一个元素的引用
push_back():在容器尾部插入元素pop_back():删除容器尾部元素
5. 标准容器类vector和deque满足这些需求。默认情况下,如果没有为特定priority_queue类实例化指定容器类,则使用vector。
6. 需要支持随机访问迭代器,以便始终在内部保持堆结构。容器适配器通过在需要时自动调用算法函数make_heap、push_heap和pop_heap来自动完成此操作。
优先队列有三个模板参数,一个是 数据类型,一个是容器,一个是比较模板
到这里我们可以得知优先队列默认就是一个大堆
其中比较这里的比较采用的是模板,并不是之前的函数,但是这里可以用比较函数去进行,也就是用一个函数指针,但是c++不喜欢这种做法,并引伸出了仿函数
仿函数就是把一个写成函数的形式
- template<class T>
- class less
- {
- public:
- bool operator(const T&x,const T& y)
- {
- return x < y;
- }
- };
这里是一个比较大小的仿函数,同时也是一个模板类型, 如果确定类型也可以不用写成模板类型
我们可以直接用这个作为比较函数,完成比较。
- #define _CRT_SECURE_NO_WARNINGS 1
- #include<iostream>
- #include<vector>
- #include<list>
- #include<stack>
- #include<queue>
- #include <functional>
- using namespace std;
- // greater算法的头文件
- int main()
- {
- // 默认情况下,创建的是大堆,其底层按照小于号比较
- vector<int> v{ 3,2,7,6,0,4,1,9,8,5 };
- priority_queue<int> q1;
- for (auto& e : v) q1.push(e);
- cout << q1.top() << endl;
- // 如果要创建小堆,将第三个模板参数换成greater比较方式
- priority_queue<int, vector<int>, greater<int>> q2(v.begin(), v.end());
- cout << q2.top() << endl;
- return 0;
- }
-
优先队列优先是大堆,这里第三个模板参数的改变也就意味比较函数的改变
- #pragma once
- template<class T,class Container=deque<T>>
- class Stack
- {
- public:
- Stack()
- {}
- void push(const T&x)
- {
- _con.push_back(x);
- }
- void pop()
- {
- _con.pop_back();
- }
-
- size_t size()
- {
- return _con.size();
- }
- bool empty()
- {
- return _con.empty();
- }
- const T& top()const
- {
- return _con.back();
- }
- T& top()
- {
- return _con.back();
- }
-
- private:
- Container _con;
- };
- #pragma once
- template<class T,class Container=deque<T>>
- class Queue
- {
- public:
- void push(const T&x)
- {
- _con.push_back(x);
- }
- void pop()
- {
- _con.pop_front();
- }
- size_t size()
- {
- return _con.size();
- }
- bool empty()
- {
- return _con.empty();
- }
- T& front()
- {
- return _con.front();
- }
- const T& front()const
- {
- return _con.front();
- }
- T& back()
- {
- return _con.back();
- }
- const T& back()const
- {
- return _con.back();
- }
- private:
- Container _con;
- };
-
- #pragma once
- template<class T,class Container=vector<T>>
- class Priority_queue
- {
- public:
- Priority_queue()//无参构造
- {}
- //迭代器构造
- template<class InputIterator>
- Priority_queue(InputIterator first, InputIterator last):_con(first,last)
- {
- for (int i = (_con.size() - 1) / 2; i >= 0; i--)
- {
- adjust_down(i);
- }
- }
- //向上调整
- void adjust_up(int child)
- {
- int father = (child-1)/2;
- while (child > 0)
- {
- if (_con[father] < _con[child])
- {
- swap(_con[child], _con[father]);
- child = father;
- father = (child - 1) / 2;
- }
- else
- {
- break;
- }
- }
- }
- //向下调整
- void adjust_down(int father)
- {
- int child = father * 2 + 1;
- while (child < _con.size())
- {
- if (child + 1 < _con.size() && _con[child] < _con[child + 1])
- {
- child++;
- }
- if (_con[father] < _con[child])
- {
- swap(_con[father], _con[child]);
- father = child;
- child = father * 2 + 1;
- }
- else
- {
- break;
- }
- }
- }
- void push(const T& x)
- {
- _con.push_back(x);
- adjust_up(_con.size() - 1);
- }
- void pop()
- {
- swap(_con[0], _con[_con.size() - 1]);
- _con.pop_back();
- adjust_down(0);
- }
- const T& top()
- {
- return _con[0];
- }
- bool empty()
- {
- return _con.empty();
- }
- size_t size()
- {
- return _con.size();
- }
- private:
- Container _con;//容器对象
- };
测试
- #define _CRT_SECURE_NO_WARNINGS 1
- #include<iostream>
- #include<vector>
- #include<list>
- #include<stack>
- #include<queue>
- #include <functional>
- using namespace std;
- #include"priority_queue.h"
- int main()
- {
- vector<int>v = { 3,4,5,1,8,7,8 };
- Priority_queue<int>p(v.begin(), v.end());
- int n = p.size();
- while (n--)
- {
- cout << p.top() << " ";
- p.pop();
- }
- cout << endl;
- return 0;
- }
上面的模拟构造并没有使用第三个参数,也就是没有仿函数,优先队列其实是复用了vector容器,看似是堆,但内部结构是一个可变的数组,其中的每个操作步骤也就是在操作数组里面的元素
还有一个加入仿函数的例子
- #pragma once
- template<class T,class Container=vector<T>,class Compare=Less<T>>
- class Priority_queue
- {
- public:
- Priority_queue()//无参构造
- {}
- //迭代器构造
- template<class InputIterator>
- Priority_queue(InputIterator first, InputIterator last):_con(first,last)
- {
- for (int i = (_con.size() - 1) / 2; i >= 0; i--)
- {
- adjust_down(i);
- }
- }
- //向上调整
- void adjust_up(int child)
- {
- int father = (child-1)/2;
- while (child > 0)
- {
- if (_com(_con[father] , _con[child]))
- {
- swap(_con[child], _con[father]);
- child = father;
- father = (child - 1) / 2;
- }
- else
- {
- break;
- }
- }
- }
- //向下调整
- void adjust_down(int father)
- {
- int child = father * 2 + 1;
- while (child < _con.size())
- {
- if (child + 1 < _con.size() && _com(_con[child] , _con[child + 1]))
- {
- child++;
- }
- if (_com(_con[father] , _con[child]))
- {
- swap(_con[father], _con[child]);
- father = child;
- child = father * 2 + 1;
- }
- else
- {
- break;
- }
- }
- }
- void push(const T& x)
- {
- _con.push_back(x);
- adjust_up(_con.size() - 1);
- }
- void pop()
- {
- swap(_con[0], _con[_con.size() - 1]);
- _con.pop_back();
- adjust_down(0);
- }
- const T& top()
- {
- return _con[0];
- }
- bool empty()
- {
- return _con.empty();
- }
- size_t size()
- {
- return _con.size();
- }
- private:
- Container _con;//容器对象
- Compare _com;//仿函数对象
- };
注意模板参数的变化和比较大小代码的变化,仿函数是写在外面的,具体怎么比,按自己的需求来
测试:
- #define _CRT_SECURE_NO_WARNINGS 1
- #include<iostream>
- #include<vector>
- #include<list>
- #include<stack>
- #include<queue>
- #include <functional>
- using namespace std;
- #include"priority_queue.h"
-
- template<class T>
- class Less
- {
- public:
- bool operator()(const T& x,const T& y)
- {
- return x < y;
- }
- };
- template<class T>
- class Greater
- {
- public:
- bool operator()(const T& x, const T& y)
- {
- return x > y;
- }
- };
- int main()
- {
- vector<int>v = { 3,4,5,1,8,7,8 };
- Priority_queue<int,vector<int>,Greater<int>> p(v.begin(), v.end());
- int n = p.size();
- while (n--)
- {
- cout << p.top() << " ";
- p.pop();
- }
- cout << endl;
- return 0;
- }
deque(双端队列):是一种双开口的"连续"空间的数据结构,双开口的含义是:可以在头尾两端进行插入和删除操作,且时间复杂度为O(1),与vector比较,头插效率高,不需要搬移元素;与list比较,空间利用率比较高。
和vector和list比起来,它比vector头插的效率高,和list比,它支持随机访问,且空间利用率比list高,但是它都无法替代他们两个,反倒成了stack和queue的底层容器
对于deque来说,它是一个指针数组,这些指针指向一片片空间,它并不真正的连续,而是由这些空间拼接而成
从上面我们可知道的是,如果我们在中间插入数据,那么就会面临两种选择
1.扩容,这样减少了挪动数据,但是使得每个数组的空间大小不一样,这里数组空间的大小不一样就会导致我们在查找数据的时候需要一个个访问,这样就导致效率变得很低
2.挪动数据,也就是保持数组长度的不变,但是这样挪动的数据就太多了,也会导致效率变低,但是好处就是我们在访问元素的时候,效率会很高,假设每个数组都是10,我们要访问第i个元素,那么我先用i-=第一层的元素个数,然后x=i/10,这里的x就是第几层(层数从0开始),然后y=i%10这里的y是第几个,这样就可以快速的定位了
因为deque有这些缺点,所以也不能替代vector和list
以上就是全部内容了,希望喜欢,多多支持
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。