Tag: Comparable

  • SortedArrayList and Merge Reviews

    This is a pair of library classes to include in your own code for manipulating ArrayLists. It consist of two classes: SortedArrayList and Merge. SortedArrayList is an ArrayList that remembers how it is sorted, so that if you ask it to sort, it can sometimes bypass the work when it is already in order. You…

  • Comparator Cutter Reviews

    Comparator Cutter is an Applet that generates custom Java code to implement Comparable/Comparator. The Applet lets you provide a few facts about the Comparable or Comparator you want and the ComparatorCutter generates you well-commented Java source code to include in your own programs. It ask you the name of the Comparator class, the name of…