成绩排序【Java版】

成绩排序

http://www.nowcoder.com/questionTerminal/3f27a0a5a59643a8abf0140b9a8cf1f7

思路

  • 重写比较器
  • 注意输出格式
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int no, score;
        List<Stu> list = new ArrayList();
        for (int i = 0; i < n; i++) {
            no = in.nextInt();
            score = in.nextInt();
            list.add(new Stu(no, score));
        }
        Collections.sort(list, ((o1, o2) -> {
            if (o1.score != o2.score) return o1.score - o2.score;
            return o1.no - o2.no;
        }));
        for(Stu s: list){
            System.out.println(s.no+" "+s.score);
        }
    }

    public static class Stu {
        int no;
        int score;

        public Stu(int no, int score) {
            this.no = no;
            this.score = score;
        }
    }
Java算法题解 文章被收录于专栏

Java算法题

全部评论

相关推荐

offer小狗:就这样上秋招??
点赞 评论 收藏
分享
牛客389580366号:读书的意义在于提升自己和他人吧,“阶级意识”是读书过程中的产出,“跨越阶级”是通过读书获得的能力
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务