题解 | #简单的数据结构#

简单的数据结构

https://ac.nowcoder.com/acm/problem/14661

不知道是不是Java的原因,使用的java.util库内的方法还是TLE了。

当然本地运行没问题。

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        Deque<Integer> deque = new LinkedList<Integer>(); 
        for(int i = 0;i < m;i++){
            int judge = sc.nextInt();
            if(judge==1){
                int a = sc.nextInt();
                deque.offerFirst(a);
            }else if(judge==2){
                deque.pollFirst();
            }else if(judge==3){
                int a = sc.nextInt();
                deque.offerLast(a);
            }else if(judge==4){
                deque.pollLast();
            }else if(judge==5){
                Collections.reverse((LinkedList<Integer>) deque);
            }else if(judge==6){
                System.out.println(deque.size());
                    for(int z:deque){
                        System.out.print(z+" ");
                    }
                    System.out.println();
            }else if(judge==7){
                Collections.sort((LinkedList<Integer>)deque);
        }
    }
}
}

全部评论

相关推荐

03-26 22:55
门头沟学院 Java
烤冷面在迎接:河南byd,应该就是郑大了。不过24届计算机是特殊情况,那年除了九✌和强2,以及两三个关系够硬的双非,其他的都是炮灰,感觉是十几年来互联网行业最烂的一年,如果想了解最新的就业情况,得找现在的大四。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务