1 Star 2 Fork 1

蓝应乐/cpp学习

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
stack.h 666 Bytes
一键复制 编辑 原始数据 按行查看 历史
蓝应乐 提交于 2021-11-23 21:18 . 11.23
#pragma once
namespace lyl
{
template <class T, class Container = deque<T>>
class stack
{
public:
void push(const T& x)
{
_c.push_back(x);
}
void pop()
{
_c.pop_back();
}
T& top()
{
return _c.back();
}
const T& top() const
{
return _c.back();
}
size_t size()
{
return _c.size();
}
bool empty()
{
return _c.empty();
}
private:
Container _c;
};
void test_stack()
{
stack<int> st;
st.push(1);
st.push(2);
st.push(3);
st.push(4);
st.push(5);
cout << st.size() << endl;
while (!st.empty())
{
cout << st.top() << " ";
st.pop();
}
cout << endl;
cout << st.empty() << endl;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/lan-yingle/cpp-learning.git
git@gitee.com:lan-yingle/cpp-learning.git
lan-yingle
cpp-learning
cpp学习
master

搜索帮助