cockmagic

Untitled

Dec 1st, 2015
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. public static void main(String a[]){
  2.  
  3.  
  4.  
  5. arrayGenerator a1 = new arrayGenerator();
  6. for(int i = 10;i <=2010 ;i+=10){
  7. long avg = 0;
  8. for (int j = 0; j <= 2500;j++){
  9.  
  10. int[] arr1= a1.createReverse(i);
  11.  
  12. long start_time = System.nanoTime ();
  13. new MyInsertionSort().insertSort(arr1);
  14. long execution_time = (System.nanoTime() - start_time);
  15. avg +=execution_time;
  16. }
  17.  
  18. System.out.println(avg / 2500);
  19.  
  20. }
  21. }
Add Comment
Please, Sign In to add comment