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 a LinkedList<Individual> where Individual is a class that has a field processorTime. It is needed to sort this LinkedList (descending order) basing on a function estimate(processorTime) which returns integers.

Please, tell me how can I do this?

share|improve this question
Where does the estimate method reside? inside the individual object? It does make sense for me for you to use a linkedlist since you obviously does not want to retain the order for which the objects are inserted. – mezzie Oct 25 '10 at 17:26

3 Answers

up vote 4 down vote accepted

Check this guide here:

http://leepoint.net/notes-java/data/collections/comparators.html

Quotations from the site:

The java.util.Comparator interface can be used to create objects to pass to sort methods or sorting data structures. A Comparator must define a compare function which takes two Objects and returns a -1, 0, or 1

Pasted code:

// File: arrays/filelist/Filelistsort.java
// Purpose: List contents of user home directory.
//          Demonstrates use of Comparators to sort the
//          same array by two different criteria.
// Author: Fred Swartz 2006-Aug-23  Public domain.

import java.util.Arrays;
import java.util.Comparator;
import java.io.*;

public class Filelistsort {

    //======================================================= main
    public static void main(String[] args) {
        //... Create comparators for sorting.
        Comparator<File> byDirThenAlpha = new DirAlphaComparator();
        Comparator<File> byNameLength   = new NameLengthComparator();

        //... Create a File object for user directory.
        File dir = new File(System.getProperty("user.home"));
        File[] children = dir.listFiles();

        System.out.println("Files by directory, then alphabetical");
        Arrays.sort(children, byDirThenAlpha);
        printFileNames(children);

        System.out.println("Files by length of name (long first)");
        Arrays.sort(children, byNameLength);
        printFileNames(children);
    }

    //============================================= printFileNames
    private static void printFileNames(File[] fa){
        for (File oneEntry : fa) {
            System.out.println("   " + oneEntry.getName());
        }
    }
}


////////////////////////////////////////////////// DirAlphaComparator
// To sort directories before files, then alphabetically.
class DirAlphaComparator implements Comparator<File> {

    // Comparator interface requires defining compare method.
    public int compare(File filea, File fileb) {
        //... Sort directories before files,
        //    otherwise alphabetical ignoring case.
        if (filea.isDirectory() && !fileb.isDirectory()) {
            return -1;

        } else if (!filea.isDirectory() && fileb.isDirectory()) {
            return 1;

        } else {
            return filea.getName().compareToIgnoreCase(fileb.getName());
        }
    }
}


////////////////////////////////////////////////// NameLengthComparator
// To sort by length of file/directory name (longest first).
class NameLengthComparator implements Comparator<File> {

    // Comparator interface requires defining compare method.
    public int compare(File filea, File fileb) {
        int comp = fileb.getName().length() - filea.getName().length();
        if (comp != 0) {
            //... If different lengths, we're done.
            return comp;
        } else {
            //... If equal lengths, sort alphabetically.
            return filea.getName().compareToIgnoreCase(fileb.getName());
        }
    }
}
share|improve this answer
Thank you very much! – Dmitry Oct 25 '10 at 17:28
@robbrit, SO best practice is to quote relevant material to avoid needing to follow a (potentially stale, for later readers) link: meta.stackoverflow.com/questions/7656/… . See also extensive discussion on @Jon Skeet's blog: msmvps.com/blogs/jon_skeet/archive/2009/02/17/… – andersoj Oct 25 '10 at 17:42
Ah, sorry about that, I'm an SO newbie! I'll edit the answer to include it. – robbrit Oct 25 '10 at 17:43
@robbrit: No problem, I think the prescription "answer the question for everybody, and for all time, not just for the immediate questioner" is one of the things that makes SO great. – andersoj Oct 25 '10 at 17:45
Skeet's entry on writing good questions is also quite useful... msmvps.com/blogs/jon_skeet/archive/2010/08/29/… – andersoj Oct 25 '10 at 17:46
show 2 more comments
Collections.sort(linkedList, new Comparator<Individual>() {
     int compare(Individual i1, Individual i2) {
       ...
     }
   });
share|improve this answer
Thank's! I've got it – Dmitry Oct 25 '10 at 17:40

Do you mean the LinkedList is not standard, or the sort order based on processor time is not standard?

If the latter, then all you need to do is use Collections.sort(list,comparator) and provide an appropriate implementation of Comparator<NodeType> for your list. See also "implementing compareTo()" which gives some good related guidance.

Post the code for your node and the desired output, and we can give you more specific direction.

Collections.sort(list,new Comparator<Individual>() {
  @Override
  public int compare(final Individual i1, final Individual i2) {
     return i1.processorTime - i2.processorTime;
  } 

  @Override
  public boolean equals(Object foo) {
    return false; // doesn't matter, but false is better
  }
});
share|improve this answer
I mean that my LinkedList is not, for example, LinkedList<Integer>. I knew nothing about comparators. Starting to learn them now =) – Dmitry Oct 25 '10 at 17:27
Thank you very much! – Dmitry Oct 25 '10 at 17:28
1  
Case closed, ah! – SidCool Oct 25 '10 at 17:29

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.