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

全部评论

相关推荐

10-25 12:05
已编辑
湖南科技大学 Java
若梦难了:我有你这简历,已经大厂乱杀了
点赞 评论 收藏
分享
小灰呵呵呵:网签还是纸质三方啊
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务