STEMHA
student
China
文章
78
分类
14
标签
105
读书笔记
C++
软件工程
123
std::stack<int> q;std::stack<int> second(first); std::stack<int, std;:vector<int>> third; 使用vector初始化stack
swap将两个 stack的内容交换。这两个 stack的模板参数 T和 Container必须都相同。
12
void swap(stack& x) 重载1:x.swap(y)void swap(stack& x, stack& y) 重载2: swap(x, y)
12345
q.push(element); 入栈q.pop(); 出栈q.top(); 返回栈顶成员q.size(); 返回栈成员个数q.empty(); 判断是否为空栈
C++ STL容器——stack用法介绍
Update your browser to view this website correctly. Update my browser now
×