I wrote this code:
class test {
public static void main(String args[]) {
int array[] = {1,2,3,4,5,6};
int i = 0;
int b = 0;
int c = 0;
method.dog(i, b, c, array);
}
}
public class method {
static void dog (int i, int b, int c, int array[]) {
if (array[i] <= array[c]) {
if (c == (int) array.length +1 ) {
int y = array[i];
array[i] = array[b];
array[b] = y;
if (b == array.length +1) return;
else b++; i =b; c=b; dog( i, b, c, array);
}
else c++; dog( i, b, c, array);
}else i ++; c= b; dog( i, b, c, array);
}
}
I keep getting the same issue over and over. It keeps saying that I am going out of bounds. How can I fix this?
I have fixed your error see below code.