stack 发表于 2023-05-20 分类于 代码随想录 阅读次数: 12345678910111213141516171819202122#include<iostream>using namespace std;#include<vector>#include <stack>stack<int,vector<int>> third;stack<int> stIn;// void push(int x){// stIn.push(x);// }int main(){ for (int i = 0; i < 9;i++){ stIn.push(i); cout << i; } cout << endl; while(!stIn.empty()){ int element = stIn.top(); cout << element; stIn.pop(); } return 0;}push(element):将元素element压入栈的顶部。pop():弹出栈顶元素。top():返回栈顶元素的引用。empty():判断栈是否为空,如果栈为空则返回true,否则返回false。size():返回栈中元素的个数。swap(other):交换当前栈的元素和另一个栈(other)的元素。-------------本文结束感谢您的阅读-------------老板你好,讨口饭吃打赏微信支付支付宝本文作者: 毛本文链接: http://example.com/2023/05/20/stack/版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!