全部评论 1

  • #include<bits/stdc++.h>
    using namespace std;

    int stk[114514],top,mn=2147483647;
    string a;

    void push(int x){
    stk[++top] = x;
    }
    bool empty(){
    return !top;
    }
    void pop(){
    if(empty()) printf("po

    2024-02-19 来自 北京

    0

热门讨论