(一)、自定义比较器Comparator及其使用

        比较器Comparator用途:当面试算法时,前面的排序不是考察重点时,直接用JDK封装的排序算法。

Arrays.sort(对象数组,new 自定义的比较器()) ;

/**
 * @Description: 自定义比较器及其使用方式
 * @author: harold
 * @date: 2021年11月09日 19:12
 */
public class CustomComparator {

    public static class Student {
        public String name;
        public int id;
        public int age;

        public Student(String name, int id, int age) {
            this.name = name;
            this.id = id;
            this.age = age;
        }
    }

    /**
     * 自定义比较器的使用方式
     * @param args
     */
    public static void main(String[] args) {
        Student student1 = new Student("A", 1, 23);
        Student student2 = new Student("B", 2, 21);
        Student student3 = new Student("C", 3, 22);

        Student[] students = new Student[] { student3, student2, student1 };
        printStudents(students);

        //数组排序
        Arrays.sort(students, new IdAscendingComparator());
        printStudents(students);

        Arrays.sort(students, new IdDescendingComparator());
        printStudents(students);
        //也可以用堆排序,优先队列就是堆
        PriorityQueue<Student> heap = new PriorityQueue<>(new IdDescendingComparator());
        heap.add(student3);
        heap.add(student1);
        heap.add(student2);
        while (!heap.isEmpty()) {
            Student student = heap.poll();
            System.out.println("Name: " + student.name + ", Id: " + student.id + ", Age: " + student.age);
        }


    }

    /**
     * 让Student对象按id从小到大排序
     */
    public static class IdAscendingComparator implements Comparator<Student> {
        @Override
        public int compare(Student o1, Student o2) {
            return o1.id - o2.id;
        }
    }

    /**
     * 让Student对象按id从大到小排序
     */
    public static class IdDescendingComparator implements Comparator<Student> {
        @Override
        public int compare(Student o1, Student o2) {
            return o2.id - o1.id;
        }
    }

    public static void printStudents(Student[] students) {
        for (Student student : students) {
            System.out.println("Name : " + student.name + ", Id : " + student.id + ", Age : " + student.age);
        }
        System.out.println("===========================");
    }



}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值