【C++初阶】STL详解(六)Stack与Queue的介绍与使用

简介: 【C++初阶】STL详解(六)Stack与Queue的介绍与使用


stack

stack是一种容器适配器,专门用在具有后进先出操作的上下文环境中,其只能从容器的一端进行元素的插入与提取操作。

stack的定义方式

方式一: 使用默认的适配器定义栈。

stack<int> st1;

方式二: 使用特定的适配器定义栈。

stack<int, vector<int>> st2;
stack<int, list<int>> st3;

注意: 如果没有为stack指定特定的底层容器,默认情况下使用deque

stack的使用

stack常用函数有以下这些:

示例如下:

#include <iostream>
#include <vector>
#include <stack>
using namespace std;
int main()
{
  stack<int, vector<int>> st;
  st.push(1);
  st.push(2);
  st.push(3);
  st.push(4);
  cout << st.size() << endl; //4
  while (!st.empty())
  {
    cout << st.top() << " ";
    st.pop();
  }
  cout << endl; //4 3 2 1
  return 0;
}

测试结果:

queue

队列是一种容器适配器,专门用在具有先进先出操作的上下文环境中,其只能从容器的一端插入元素,另一端提取元素。

queue的定义方式

方式一: 使用默认的适配器定义队列。

queue<int> q1;

方式二: 使用特定的适配器定义队列。

queue<int, vector<int>> q2;
queue<int, list<int>> q3;

注意: 如果没有为queue指定特定的底层容器,默认情况下使用deque。

queue的使用

queue常用函数有以下这些:

示例如下:

namespace cl //防止命名冲突
{
  template<class T, class Container = std::deque<T>>
  class stack
  {
  public:
    //元素入栈
    void push(const T& x)
    {
      _con.push_back(x);
    }
    //元素出栈
    void pop()
    {
      _con.pop_back();
    }
    //获取栈顶元素
    T& top()
    {
      return _con.back();
    }
    const T& top() const
    {
      return _con.back();
    }
    //获取栈中有效元素个数
    size_t size() const
    {
      return _con.size();
    }
    //判断栈是否为空
    bool empty() const
    {
      return _con.empty();
    }
    //交换两个栈中的数据
    void swap(stack<T, Container>& st)
    {
      _con.swap(st._con);
    }
  private:
    Container _con;
  };
}

测试结果:

相关文章
|
20天前
|
存储 程序员 C++
C++常用基础知识—STL库(2)
C++常用基础知识—STL库(2)
60 5
|
18天前
|
存储 算法 调度
【C++打怪之路Lv11】-- stack、queue和优先级队列
【C++打怪之路Lv11】-- stack、queue和优先级队列
24 1
|
20天前
|
存储 自然语言处理 程序员
C++常用基础知识—STL库(1)
C++常用基础知识—STL库(1)
44 1
|
24天前
|
设计模式 存储 C++
C++之stack 和 queue(下)
C++之stack 和 queue(下)
28 1
|
22天前
|
算法 数据处理 C++
c++ STL划分算法;partition()、partition_copy()、stable_partition()、partition_point()详解
这些算法是C++ STL中处理和组织数据的强大工具,能够高效地实现复杂的数据处理逻辑。理解它们的差异和应用场景,将有助于编写更加高效和清晰的C++代码。
16 0
|
19天前
|
存储 编译器 对象存储
【C++打怪之路Lv5】-- 类和对象(下)
【C++打怪之路Lv5】-- 类和对象(下)
21 4
|
19天前
|
编译器 C语言 C++
【C++打怪之路Lv4】-- 类和对象(中)
【C++打怪之路Lv4】-- 类和对象(中)
18 4
|
18天前
|
存储 安全 C++
【C++打怪之路Lv8】-- string类
【C++打怪之路Lv8】-- string类
17 1
|
28天前
|
存储 编译器 C++
【C++类和对象(下)】——我与C++的不解之缘(五)
【C++类和对象(下)】——我与C++的不解之缘(五)
|
29天前
|
编译器 C++
【C++类和对象(中)】—— 我与C++的不解之缘(四)
【C++类和对象(中)】—— 我与C++的不解之缘(四)