题解 | #设计getMin功能的栈#

设计getMin功能的栈

http://www.nowcoder.com/practice/05e57ce2cd8e4a1eae8c3b0a7e9886be

import java.util.*;

public class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        int n=sc.nextInt();
        Deque<Integer> data=new LinkedList<>();

        for(int i=0;i<=n;i++){
            String line=sc.nextLine();
            String[] strs=line.split(" ");

            String op=strs[0];

            if("push".equals(op)){
                data.addLast(Integer.parseInt(strs[1]));
            }else if("pop".equals(op)){
                data.removeLast();
            }else if("getMin".equals(op)){
                Integer[] ints=data.toArray(new Integer[0]);
                Arrays.sort(ints);
                System.out.println(ints[0]);
            }
        }
    }
}

全部评论

相关推荐

11-29 00:55
门头沟学院
区域赛银,邀请赛金,打算十二月打下Java基础、背点八股、写个外卖后去投福建小厂的寒假实习,简历应该怎么写呢?以及福州/和厦门有推荐的小厂吗?
牛客53210502...:简历一页:把区域银,邀请赛金标粗,其他的奖除非凑一页否则没有必要写。或者多页:每个站一行这样都列出来。项目经历看看牛客其他人是怎么写的,写的不好呢。简历打磨好按部就班没问题的
点赞 评论 收藏
分享
gelmanspar...:奖学金删掉,自我评价删掉,简历压缩一下,写一页
如果再来一次,你还会学机...
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务