Sort an array of strings in reverse order. : Comparator Interface « Collections « Java Tutorial






import java.util.Arrays;
import java.util.Comparator;

class MyComparator implements Comparator<String> {

  public int compare(String strA, String strB) {
    return strB.compareTo(strA);
  }
}

public class Main {
  public static void main(String[] argv) throws Exception {
    String strs[] = { "d", "h", "a", "c", "t" };

    MyComparator rsc = new MyComparator();

    Arrays.sort(strs, rsc);

    for (String s : strs)
      System.out.println(s + " ");

    Arrays.sort(strs);

    System.out.print("Sorted in natural order: ");
    for (String s : strs)
      System.out.println(s + " ");
  }
}
/*
t 
h 
d 
c 
a 
Sorted in natural order: a 
c 
d 
h 
t 
*/








9.40.Comparator Interface
9.40.1.System-Defined Comparable Classes
9.40.2.Writing Your own Comparator
9.40.3.Getting reverse order comparator
9.40.4.Implementing a Comparator for a class
9.40.5.Use a custom comparator.
9.40.6.Sort an array of strings in reverse order.
9.40.7.Sort an array of strings, ignore case difference.
9.40.8.Use a comparator to sort accounts by last name.
9.40.9.Comparator uses a Collator to determine the proper, case-insensitive lexicographical ordering of two strings.
9.40.10.Calendar Comparator
9.40.11.Invertible Comparator