首页 > 其他分享 >栈

时间:2024-11-21 22:22:54浏览次数:1  
标签: int namespace STL push main 单调

前言

先进后出

STL stact

跟其他的STL 很像,不多说了

#include <bits/stdc++.h>
using namespace std;
int main()
{
    stack<int> s;
    s.push(123);
    s.push(321);
    s.push(128);
    cout << s.top() << endl;
    s.pop();
    cout << s.top() << endl;
    cout << s.size();
    if (s.empty())
    {
        cout << "*";
    }
    else
    {
        cout << "&" << endl;
    }
    return 0;
}
/*输出:
128
321
2&*/

单调栈

其实就是一个保持单调的栈,原理跟单调队列一样不过更简单,只用看栈顶

#include<bits/stdc++.h>
using namespace std;
int n;
int main()
{
    stack<int> s;
    for(int i=1;i<=n;i++)
    {
        
    }
    for(int i=n;i>=1;i--)
    {
        while(s.size()&&/*破坏了单调性*/)
            s.pop();
        /*处理*/
    }
    return 0;
}

题目

P2947
P5788
P1739
P1981
P1175

标签:,int,namespace,STL,push,main,单调
From: https://www.cnblogs.com/-include-lmt/p/18561662

相关文章