Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. System.out.println("TESTING QUICKSORT");
  2. ArrayList<Integer> quickSortTester= new ArrayList<Integer>();
  3. n= 100;
  4. for(int i=10; i>=0;--i){
  5. quickSortTester.add(0);
  6. System.out.println(quickSortTester.get(i));
  7.  
  8. }
  9. System.out.println();
  10. System.out.println();
  11. System.out.println();
  12. System.out.println();
  13.  
  14. System.out.println();
  15. System.out.println();
  16. System.out.println();
  17.  
  18. stuff.quickSort(quickSortTester, quickSortTester.get(0), quickSortTester.size()-1);
  19. for(int i=0; i<quickSortTester.size();++i){
  20. System.out.println(quickSortTester.get(i));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement