Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Implementing Java Comparator

I am trying to write an algorithm which utilizes a min-priority queue, so I looked around on google and found the PriorityQueue. It seems that in order to use it, though, I am going to need to tell it how I want it to prioritize, and that the way to do this is with a comparator (I want to compare specific data fields of my "Node1" objects). More googling presented the idea of creating a new comparator which implements Comparator but overrides the compare method. What I am trying is this (and other variations of it as well):

import java.util.Comparator;

public class distComparator implements Comparator {

    @Override
    public int compare(Node1 x, Node1 y){
        if(x.dist<y.dist){
            return -1;
        }
        if(x.dist>y.dist){
            return 1;
        }
        return 0;
    }
}

The compiler protests on several grounds, one of which is that I haven't over-ridden the comparator class (which it says is abstract)

error: distComparator is not abstract and does not override abstract method compare(Object,Object) in Comparator

I have switched it to say "compare(object x, object y)", which takes care of that issue. At this point though the compiler complains that it can't find the "dist" variable in x or y--which makes sense, since they are part of my Node1 class, not the Object class.

So how is this supposed to work? It should have type Object, apparently, but then how do I direct it to the correct variable?

like image 460
Jo.P Avatar asked Apr 05 '13 17:04

Jo.P


People also ask

Which method is implemented by Comparator interface in Java?

Java Comparator interface is used to sort an array or List of objects based on custom sort order. The custom ordering of items is imposed by implementing Comparator's compare() method in the objects.

How do you write a Comparator to an object in Java?

A comparator object is capable of comparing two objects of the same class. Following function compare obj1 with obj2. Syntax: public int compare(Object obj1, Object obj2):


1 Answers

You need to implement Comparator<Node1>:

public class distComparator implements Comparator<Node1> {
                                                 ^^^^^^^

Without this, you are implementing Comparator<Object>, which isn't what you want (it can be made to work, but isn't worth the hassle).

The rest of the code in your question is fine, provided Node1 has an accessible member called dist.

Note that if you are using Java 7, the entire body of the method can be replaced with

return Integer.compare(x.dist, y.dist);

(replace Integer with Double etc, depending on the type of Node1.dist.)

like image 126
NPE Avatar answered Oct 07 '22 18:10

NPE