带有自定义比较器的 Java PriorityQueue

标签 java priority-queue

我正在使用 PriorityQueue 和我自己的比较器,但不知何故最终结果并不总是好的。 我应该按平均成绩排序,而不是姓名,而不是 id.no。最后它应该返回留在排序队列中的名字。其余的名字很好,但它们的顺序不是。 输入(姓名,平均成绩,id.no):

add John 3,75 50
add Mark 3,8 24
add Shafaet 3,7 35
poll
poll
add Samiha 3,85 36
poll
add Ashley 3,9 42
add Maria 3,6 46
add Anik 3,95 49
add Dan 3,95 50
poll

预期输出:

Dan
Ashley
Shafaet
Maria

我的结果:

Dan
Ashley
Maria
Shafaet

你能帮我找出问题所在吗? 提前致谢!

class StComp implements Comparator<Students> {
        @Override
        public int compare(Students st1, Students st2) {
            if (st1.getCgpa() == st2.getCgpa()) {
                if (st1.getName().equals(st2.getName()))
                    return st1.getId() - st2.getId();
                else
                    return st1.getName().compareTo(st2.getName());
            }
            else
                return (st1.getCgpa() < st2.getCgpa()) ? 1 : -1;
        }
    }

    StComp stComp = new StComp();
    PriorityQueue<Students> pq = new PriorityQueue<Students>(2, stComp);

最佳答案

您的比较器 是正确的。问题是您很可能使用其 Iterator 遍历列表。 PriorityQueue documentation状态:

The Iterator provided in method iterator() is not guaranteed to traverse the elements of the priority queue in any particular order.

如果您要像这样遍历 PriorityQueue,您应该会看到正确的结果:

while (!pq.isEmpty())
    System.out.println(pq.poll().getName());
}

我在这个答案的末尾包含了一个例子来充分展示。


如果您不想清除您的PriorityQueue,您可以做一些事情。我个人不推荐任何一种方法,因为 PriorityQueue 的初始选择对于用例来说是不正确的,因为它们不打算被迭代。

您可以将您的 PriorityQueue 复制到一个数组中,使用您的 Comparator 实现对它们进行排序,迭代排序的数组,例如:

Student[] students = pq.toArray(new Student[pq.size()]);
Arrays.sort(students, new StComp());
for (Student s : students) {
    System.out.println(s.getName() + " " + s.getCgpa() + " " + s.getId());
}

或者在轮询时将它们添加到某种Collection中,然后将它们添加回PriorityQueue,例如:

Collection<Student> temp = new LinkedList<>();
while (!pq.isEmpty()) {
    Student s = pq.poll();
    System.out.println(s.getName() + " " + s.getCgpa() + " " + s.getId());
    temp.add(s);
}
pq.addAll(temp);

使用您的数据进行演示的示例:

主要

public class Main {

    public static void main(String[] args) {
        PriorityQueue<Student> pq = new PriorityQueue<>(new StComp());
        pq.add(new Student("John", 75, 50)); // Student name, grade average, id
        pq.add(new Student("Mark", 8, 24));
        pq.add(new Student("Shafaet", 7, 35));
        pq.poll();
        pq.poll();
        pq.add(new Student("Samiha", 85, 36));
        pq.poll();
        pq.add(new Student("Ashley", 9, 42));
        pq.add(new Student("Maria", 6, 46));
        pq.add(new Student("Anik", 95, 49));
        pq.add(new Student("Dan", 95, 50));
        pq.poll();

        // Not guaranteed to be in priorty order
        System.out.println("Using PriorityQueue's Iterator, may not be in the correct priority order.");
        for (Student s : pq) {
            System.out.println(s.getName() + " " + s.getCgpa() + " " + s.getId());
        }

        // Correct order, but removes from the Priority Queue
        System.out.println("\nIterating until empty using PriorityQueue.poll(), will be in the correct order.");
        while (!pq.isEmpty()) {
            Student s = pq.poll();
            System.out.println(s.getName() + " " + s.getCgpa() + " " + s.getId());
        }
    }

}

Student(重命名,应为单数)

public class Student {

    private double cgpa;
    private String name;
    private int id;

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

    public String getName() {
        return name;
    }

    public int getId() {
        return id;
    }

    public double getCgpa() {
        return cgpa;
    }

}

StComp(问题逻辑不变)

public class StComp implements Comparator<Student> {

    @Override
    public int compare(Student st1, Student st2) {
        if (st1.getCgpa() == st2.getCgpa()) {
            if (st1.getName().equals(st2.getName())) {
                return st1.getId() - st2.getId();
            } else {
                return st1.getName().compareTo(st2.getName());
            }
        } else {
            return (st1.getCgpa() < st2.getCgpa()) ? 1 : -1;
        }
    }
}

输出(至少对我来说,第一个 Iterator 变体的结果可能会有所不同)

Using PriorityQueue's Iterator, may not be in the correct priority order.
Dan 95.0 50
Ashley 9.0 42
Maria 6.0 46
Shafaet 7.0 35

Iterating until empty using PriorityQueue.poll(), will be in the correct order.
Dan 95.0 50
Ashley 9.0 42
Shafaet 7.0 35
Maria 6.0 46

关于带有自定义比较器的 Java PriorityQueue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46891478/

相关文章:

java - 获取 Eclipse RCP 应用程序中已安装功能的列表

c++ - 在 C++ 中插入优先级队列时如何解决段错误

java - 如何在 Android 中使用 jar 文件显示图像?

java - 如何为 FreeFair AspectJ Gradle 插件设置 "-aspectpath"?

c - Valgrind:大小 4 的无效读取 -> sigsegv,在没有 valgrind 和 visual studio 的情况下工作正常

java - 从一百万条记录中获取前 10 条和后 10 条

javascript - Javascript 中有消息优先级吗?

c++ - 比较器功能如何在Priority Queue C++ STL中工作?

java - Android - 指定的 child 已经有一个 parent 。您必须先对 child 的 parent 调用 removeView()

java - 无法解释 NullPointerException