Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class MainProgram{
  2.     public static void main(String []args){
  3.         java.util.ArrayList<Integer> num=new <Integer>java.util.ArrayList();
  4.         num.add(8);
  5.         num.add(3);
  6.         num.add(2);
  7.         num.add(9);
  8.         num.add(7);
  9.         num.add(1);
  10.         num.add(5);
  11.         num.add(4);
  12.        
  13.         System.out.print("Before sort : ");
  14.         display(num);
  15.         Array.mergesort(num);
  16.         System.out.print("After sort : ");
  17.         display(num);
  18.         System.exit(0);
  19.     }
  20.     public static void display(java.util.ArrayList num){
  21.         if(num.size()>0){
  22.             System.out.print("["+num.get(0)+"]");
  23.             for(int i=1;i<num.size();i++){
  24.                 System.out.print(",["+num.get(i)+"]");
  25.             }
  26.             System.out.println();
  27.         }
  28.     }
  29. }