Quicksort not sorting input [-1, 2, -8, -10]

前端 未结 0 1709
难免孤独
难免孤独 2021-01-31 18:35

Here is the code:

public int[] sortArray(int[] arr) {
    // sort array using quicksort
    sort(arr, 0, arr.length - 1);
    return arr;
}

private void sort(int         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题