Jump to content

jordana17

Members
  • Posts

    1
  • Joined

  • Last visited

Everything posted by jordana17

  1. Hey, M trying to implement bubble sort using recursion and have got a response ArrayIndexOutOfBoundsException: 11 Unable to figure out where I went wrong public static int[] recBubSort(int []arr, int n){ if(n > arr.length-1){ return arr; } if(arr[n] > arr[n+1]){ swap(arr,n,n+1); } return recBubSort(arr,n+1); } public static void swap(int arr[], int minPos, int index) { //System.out.println("SelectionSort SWAP..."); int temp = arr[minPos]; arr[minPos] = arr[index]; arr[index] = temp; }
×
×
  • Create New...