第一个题解

由两个栈组成的队列

http://www.nowcoder.com/questionTerminal/6bc058b32ee54a5fa18c62f29bae9863

import java.util.*;
public class Main{
    static Stack<Integer> stack1 = new Stack<Integer>();
    static Stack<Integer> stack2 = new Stack<Integer>();
    public static void add(int a){
        stack1.push(a);
        if(stack2.isEmpty()){
            while(!stack1.isEmpty()){
                stack2.push(stack1.pop());
            }
        }
    }
    public static int poll(){
        if(stack2.isEmpty() && !stack1.isEmpty()){
            while(!stack1.isEmpty()){
                stack2.push(stack1.pop());
            }
        }
        if(stack2.isEmpty()) throw new RuntimeException("队列空");
        return stack2.pop();
    }
    public static int peek(){
        if(stack2.isEmpty() && !stack1.isEmpty()){
            while(!stack1.isEmpty()){
                stack2.push(stack1.pop());
            }
        }
        if(stack2.isEmpty()) throw new RuntimeException("队列空");
        return stack2.peek();
    }
    public static void main(String[] args){
        Scanner scan = new Scanner(System.in);
        int n = Integer.valueOf(scan.nextLine());
        for(;n>0;n--){
            String str = scan.nextLine();
            String[] splits = str.split(" ");
            if("add".equals(splits[0])){
                add(Integer.parseInt(splits[1]));
            }else if("peek".equals(splits[0])){
                System.out.println(peek());
            }else{
                poll();
            }
        }
    }
}
全部评论
出现重复代码来,赶紧整一个方法把代码抽取出来吧。
点赞 回复 分享
发布于 2021-07-05 09:35

相关推荐

10-13 17:47
门头沟学院 Java
wulala.god:图一那个善我面过,老板网上找的题库面的
点赞 评论 收藏
分享
2 收藏 评论
分享
牛客网
牛客企业服务