Exemple #1
0
 public static void main(String[] args) {
   RandomList r = new RandomList(RandomList.FillType.fillInt, 10);
   List l = r.fill();
   sort_az(l);
   System.out.println(l);
   sort_za(l);
   System.out.println(l);
 }