jordana17 Posted September 11, 2020 Share Posted September 11, 2020 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; } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.