Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have written this class:

public class SortingObjectsWithAngleField implements Comparator<Point> {

    public int compare(Point p1, Point p2) {
        double delta = p1.getAngle() - p2.getAngle();
        if(delta == 0.00001)
            return 0;
        return (delta > 0.00001) ? 1 : -1;
    }
}

and then in my main() method I have created a List to which I add some objects which has "X" and "angle" field. And then I use

Collections.sort(list,new SortingObjectsWithAngleField());

I want to know that what is the complexity of this sort method?

Thanks

share|improve this question

3 Answers

up vote 6 down vote accepted

You could have read up the docs on Collections sort, but here it is for you:

The sorting algorithm is a modified mergesort (in which the merge is omitted if the highest element in the low sublist is less than the lowest element in the high sublist). This algorithm offers guaranteed n log(n) performance.

Your Comparator doesn't change this complexity, unless you do anything with loops over your collection in it, which you don't.

share|improve this answer
you mean that each sorting method can not have time complexity less than nlogn !! like this sort method , is it right? – user472221 Nov 23 '10 at 8:59
Well depends, if you do some fancy stuff in your comparator which takes more time with the amount of elements in your collection then you will end up with more than n*log(n). But I currently fail to find an example about when you would do that. So in general yes, you get n*log(n) with collections.sort in any case. – Jan Thomä Nov 23 '10 at 9:26
thanks a lot for your answer :) – user472221 Nov 23 '10 at 10:26
1  
An example is the sort of lists, according to their minimal element. In that case, your comparator will have to traverse all the list to find the minimal element. then your complexity will become m*n*log(n) where m is the average size of your lists. – Nicolas Nov 23 '10 at 11:41

Taken from Collections.sort -

The sorting algorithm is a modified mergesort (in which the merge is omitted if the highest element in the low sublist is less than the lowest element in the high sublist). This algorithm offers guaranteed n*log(n) performance

share|improve this answer

You should have found it in the API: n log(n).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.