博客
关于我
AcWing 828. 模拟栈
阅读量:347 次
发布时间:2019-03-04

本文共 1795 字,大约阅读时间需要 5 分钟。

实现一个栈,栈初始为空,支持四种操作:

(1) “push x” – 向栈顶插入一个数x;

(2) “pop” – 从栈顶弹出一个数;

(3) “empty” – 判断栈是否为空;

(4) “query” – 查询栈顶元素。

现在要对栈进行M个操作,其中的每个操作3和操作4都要输出相应的结果。

输入格式

第一行包含整数M,表示操作次数。

接下来M行,每行包含一个操作命令,操作命令为”push x”,”pop”,”empty”,”query”中的一种。

输出格式

对于每个”empty”和”query”操作都要输出一个查询结果,每个结果占一行。

其中,”empty”操作的查询结果为“YES”或“NO”,”query”操作的查询结果为一个整数,表示栈顶元素的值。

数据范围

1≤M≤1000001≤M≤100000,

1≤x≤1091≤x≤109
所有操作保证合法。

输入样例:

10push 5querypush 6popquerypopemptypush 4queryempty

输出样例:

55YES4NO
import java.io.*;import java.lang.Integer;class Main{    static int N = 100010;    static int[] st = new int[N];    static int tt = 0;        static void push(int x){        st[++tt] = x;    }    static void pop(){        if(!empty())            tt--;    }    static boolean empty(){        if(tt > 0)return false;        return true;    }    static int query(){        if(!empty())            return st[tt];        return -1;    }            public static void main(String[] args)throws Exception{        BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));        BufferedWriter pw = new BufferedWriter(new OutputStreamWriter(System.out));        int n = Integer.valueOf(buf.readLine());        for(int i = 0; i < n; ++i){            String[] params = buf.readLine().split(" ");            if("push".equals(params[0])){                int x = Integer.valueOf(params[1]);                push(x);            }else if("pop".equals(params[0])){                pop();            }else if("empty".equals(params[0])){                boolean res = empty();                if(res)pw.write("YES\n");                else pw.write("NO\n");            }else{                int res = query();                if(res > 0)pw.write(res + "\n");            }        }        pw.flush();        buf.close();        pw.close();    }}

 

转载地址:http://okre.baihongyu.com/

你可能感兴趣的文章
nginx工作笔记005---nginx配置负载均衡_在微服务中实现网关集群_实现TCP传输层协议__http协议的负载均衡
查看>>
nginx常用命令及简单配置
查看>>
Nginx常用屏蔽规则,让网站更安全
查看>>
nginx开机启动脚本
查看>>
nginx异常:the “ssl“ parameter requires ngx_http_ssl_module in /usr/local/nginx/conf
查看>>
nginx总结及使用Docker创建nginx教程
查看>>
nginx报错:the “ssl“ parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf:128
查看>>
nginx报错:the “ssl“ parameter requires ngx_http_ssl_module in usrlocalnginxconfnginx.conf128
查看>>
nginx日志分割并定期删除
查看>>
Nginx日志分析系统---ElasticStack(ELK)工作笔记001
查看>>
Nginx映射本地json文件,配置解决浏览器跨域问题,提供前端get请求模拟数据
查看>>
Nginx映射本地静态资源时,浏览器提示跨域问题解决
查看>>
nginx最最最详细教程来了
查看>>
Nginx服务器---正向代理
查看>>
Nginx服务器上安装SSL证书
查看>>
Nginx服务器基本配置
查看>>
Nginx服务器的安装
查看>>
Nginx标准配置文件(包括反向代理、大文件上传、Https证书配置、文件预览等)
查看>>
Nginx模块 ngx_http_limit_conn_module 限制连接数
查看>>
Nginx模块 ngx_http_limit_req_module 限制请求速率
查看>>