简单排序(类)

图片说明 图片说明

import java.io.IOException;
import java.util.*;

public class Main {

    public static void main(String[] args) throws IOException {
        Scanner sc = new Scanner(System.in);
        Stack<Character> st = new Stack<Character>();
        int n = sc.nextInt();
        Student[] stu = new Student[n];
        for(int i = 0;i < n;i++){
            stu[i] = new Student();
            stu[i].chinese  = sc.nextInt();
            stu[i].sum = stu[i].chinese + sc.nextInt() + sc.nextInt();
            stu[i].id = i + 1;
        }
        Arrays.sort(stu);
        for(int i = 0;i < 5;i++){
            System.out.printf(stu[i].id +" "+ stu[i].sum);
            System.out.println();
        }


    }
}
class Student implements Comparable<Student>{
    int chinese,math,english,sum;
    int id;
    public int compareTo(Student o){
        if(this.sum != o.sum){
            return ((int) (o.sum - this.sum));
        }else {
            if(o.chinese != this.chinese){
                return ((int)(o.chinese - this.chinese));
            }else {
                return this.id - o.id;
            }
        }
    }




}

存在关键字排序的题目,首先对比总分从大到小,然后对比语文成绩,如果语文相同那就再对比id。

这里要写一个Compareable接口,用Sudent实现这一个接口,然后再接口中定义全部成绩(包括语文成绩,因为要用语文成绩对比),id。然后写一个Student方法,在方法内先对比总成绩然后是语文成绩,最后是id。在主类中,要新建一个stu实例:Student[] stu = new Student[n];之后再for循环中也要用到这一个新建实例stu[i] = new Student();,之后排序这一个stu就可以了。

全部评论

相关推荐

冲芭芭拉鸭:你这图还挺新,偷了。
投递美团等公司10个岗位
点赞 评论 收藏
分享
10-17 12:16
同济大学 Java
7182oat:快快放弃了然后发给我,然后让我也泡他七天最后再拒掉,狠狠羞辱他一把😋
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务