Guest User

Untitled

a guest
Dec 6th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. package com.test.app;
  2.  
  3. import java.util.Arrays;
  4.  
  5. public class Sort {
  6.  
  7. public static void main(String[] args) {
  8.  
  9. int[] array = {10,8,6,4,2,9,7,5,3,1};
  10.  
  11. SortUtil.quickSort(array, 0, 9);
  12.  
  13. System.out.println(Arrays.toString(array));
  14.  
  15. }
  16.  
  17. }
Add Comment
Please, Sign In to add comment