Categorías
Collections

Ejemplo de ordenación de matrices

import java.util.Arrays;
import java.util.Comparator;
 
public class SearchObjArray {
    public static void main(String[] args){
        String [] sa = {"one", "two", "three", "four"};
        Arrays.sort(sa);
        for(String s : sa){
            System.out.print(s + " ");
        }
        System.out.println("none = " + Arrays.binarySearch(sa, "one"));
 
        System.out.println("now reverse sort");
        ReSortComparator rs = new ReSortComparator();
        Arrays.sort(sa, rs);//re-sort the array using the Comparator. sort(sa, rs)
        for(String s : sa){
            System.out.print(s + " ");
        }
        System.out.println("none = " + Arrays.binarySearch(sa, "one"));//doesn't pass the binarySearch() method the Comparator we used to sort the array, so get an incorrect answer
        System.out.println("one = " + Arrays.binarySearch(sa,"one", rs));//passing the Comparator to binarySearch(), so get correct answer
    }
    static class ReSortComparator implements Comparator{//define the Comparator, it's ok for this to be an inner class
        public int compare(String a, String b){
            return b.compareTo(a);
        }
    }
}
  Conjunto frente a conjunto

Producción:

correr:
cuatro uno tres dos
uno = 1
ahora orden inverso
dos tres uno cuatro
uno = -1
uno = 2
CONSTRUYE EXITOSO (tiempo total: 2 segundos)

Por Programación.Click

Más de 20 años programando en diferentes lenguajes de programación. Apasionado del code clean y el terminar lo que se empieza. ¿Programamos de verdad?

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *