题解 | #设计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]);
            }
        }
    }
}

全部评论

相关推荐

秋招投简历提醒助手:个人经验是,一般面二十场左右就会进入侃侃而谈阶段。我今年七月末的时候开始的第一次面试,都是很多不会,回复很慢。后面慢慢迭代,到九月中的时候基本上面啥说啥,很放松的状态
远程面试的尴尬瞬间
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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