当前位置:   article > 正文

容器适配器

容器适配器

STL学习系列之六—容器适配器

STL提供了三种容器适配器:stack,queue,priority_queue。

适配器并不是第一类容器,因为它们并没有提供与元素的保存形式有关的真正数据结构实现,并且适配器不支持迭代器。

适配器的优点是:能够使程序员选择一种合适的底层数据结构。

这三个适配器类都提供了成员函数push和pop,能够在每个适配器数据结构中正确地插入和删除元素。

1、 stack适配器

stack类允许在底层数据结构的一端执行插入和删除操作(先入后出)。堆栈能够用任何序列容器实现:vector、list、deque。

下面的demo1创建了三个整数堆栈,使用标准库的每种序列容器作为底层数据结构来实现堆栈。默认情况下,堆栈是用deque实现的。

堆栈的操作包括:

1.将一个元素插入到堆栈顶部的push函数(通过调用底层容器的push_back函数实现)

2.从堆栈的顶部删除一个元素的pop函数(通过调用底层元素的pop_back函数实现)

3.获取堆栈顶部元素引用的top函数(通过调用底层容器的back函数实现)

4.判断堆栈是否为空的empty函数(通过调用底层容器的empty函数实现)

5.获取堆栈元素数量的size函数(通过调用底层容器的size函数实现)

为了获得最佳性能,应使用vector类作为stack的底层容器

下面的demo演示了stack适配器类

  1. #include <iostream>
  2. #include <stack>
  3. #include <vector>
  4. #include <list>
  5. using namespace std;
  6. template <typename T> void pushElements(T &stackRef);
  7. template <typename T> void popElement(T &stackRef);
  8. int _tmain(int argc, _TCHAR* argv[])
  9. {
  10. stack<int> intDequeStack;
  11. stack<int,vector<int>> intVectorStack;
  12. stack<int,list<int>> intListStack;
  13. cout<<"pushing onto intDequeStack: ";
  14. pushElements(intDequeStack);
  15. cout<<"\npushing onto intVectorStack: ";
  16. pushElements(intVectorStack);
  17. cout<<"\npushing onto intListStack: ";
  18. pushElements(intListStack);
  19. cout<<endl<<endl;
  20. cout<<"poping from intDequeStack: ";
  21. popElement(intDequeStack);
  22. cout<<"\npoping from intVectorStack: ";
  23. popElement(intVectorStack);
  24. cout<<"\npoping from intListStack: ";
  25. popElement(intListStack);
  26. cout<<endl;
  27. system("pause");
  28. return 0;
  29. }


输出结果为:

2、 queue适配器

queue类允许在底层数据结构的末尾插入元素,也允许从前面插入元素(先入先出)。

队列能够用STL数据结构的list和deque实现,默认情况下是用deque实现的。

常见的queue操作:

1.在队列末尾插入元素的push函数(通过调用底层容器的push_back函数实现)

2.在队列前面删除元素的pop函数(通过调用底层容器的pop_back函数实现)

3.获取队列中第一个元素的引用的front函数(通过调用底层容器的front函数实现)

4.获取队列最后一个元素的引用的back(通过调用底层容器的back函数实现)

5.判断队列是否为空的empty函数(通过调用底层容器的empty函数实现)

6.获取队列元素数量的size函数(通过调用底层容器的size函数实现)

为了获得最佳性能,应使用deque类作为queue的底层容器

下面的denon2演示了queue适配器类

  1. #include <iostream>
  2. #include <queue>
  3. using namespace std;
  4. int _tmain(int argc, _TCHAR* argv[])
  5. {
  6. queue<double> values;
  7. //使用push函数,将元素添加到队列中
  8. values.push(3.2);
  9. values.push(9.8);
  10. values.push(5.4);
  11. cout<<"popping from values: ";
  12. //使用empty函数,判断队列是否为空
  13. while (!values.empty())
  14. {
  15. cout<<values.front()<<' '; //当队列还有其他元素时,使用front函数读取(但不删除)队列的第一个元素,用于输出
  16. values.pop(); //用pop函数,删除队列的第一个元素
  17. }
  18. cout<<endl;
  19. system("pause");
  20. return 0;
  21. }


 


输出结果为:

3、 priority_queue适配器

priority_queue类,能够按照有序的方式在底层数据结构中执行插入操作,也能从底层数据结构的前面执行删除操作。

priority_queue能够用STL的序列容器vector和deque实现。默认情况下使用vector作为底层容器的。当元素添加到priority_queue时,它们按优先级顺序插入。

这样,具有最高优先级的元素,就是从priority_queue中首先被删除的元素。通常这是利用堆排序来实现的。

堆排序总是将最大值(即优先级最高的元素)放在数据结构的前面。这种数据结构称为(heap)

默认情况下,元素的比较是通过比较器函数对象less<T>执行的。

priority_queue具有几个常见的操作:

1.根据priority_queue的优先级顺序在适当位置插入push函数(通过调用底层容器的push_back,然后使用堆排序为元素重新排序)

2.删除priority_queue的最高优先级元素的pop(删除堆顶元素之后通过调用底层容器的pop_back实现)

3.获取priority_queue的顶部元素引用的top函数(通过调用底层容器的front函数实现)

4.判断priority_queue是否为空的empty函数(通过调用底层容器的empty函数实现)

5.获取priority_queue元素数量的size函数(通过调用底层容器的size函数实现)

为了获取最佳性能,使用vector作为priority_queue的底层容器

下面demo3演示了priority_queue适配器类的用法

  1. #include <iostream>
  2. #include <queue>
  3. using namespace std;
  4. int _tmain(int argc, _TCHAR* argv[])
  5. {
  6. //实例化一个保存double值的priority_queue,并使用vector作为底层数据结构
  7. priority_queue<double> priorities;
  8. priorities.push(3.2);
  9. priorities.push(9.8);
  10. priorities.push(5.4);
  11. cout<<"Popping from priorities: ";
  12. while (!priorities.empty())
  13. {
  14. cout<<priorities.top()<<' '; //当priority_queue中还有其他元素时,使用priority_queue的top取得具有最高优先级的元素,用于输出
  15. priorities.pop(); //删除priority_queue中具有最高优先级的元素
  16. }
  17. cout<<endl;
  18. system("pause");
  19. return 0;
  20. }


 


输出结果为:

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/197895?site
推荐阅读
相关标签
  

闽ICP备14008679号