AcWing828.模拟栈

发布时间:2024年01月24日

?

import java.util.Scanner;

public class Main{
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int[] stl = new int[100010];//栈
        int m = sc.nextInt();//输入次数
        int tt = 0;//栈顶
        while (m-- > 0){
            String s = sc.next();
            if (s.equals("push")){
                int x = sc.nextInt();
                stl[++tt] = x;
            } else if (s.equals("pop")){
                tt--;
            } else if (s.equals("empty")){
                if (tt > 0){
                    System.out.println("NO");
                } else {
                    System.out.println("YES");
                }
            } else {
                System.out.println(stl[tt]);
            }
        }
    }
}

文章来源:https://blog.csdn.net/2302_76649176/article/details/135820497
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。