why is my code going out of bounds?

284 Views Asked by At

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?

2

There are 2 best solutions below

1
On BEST ANSWER

I have fixed your error see below code.

static void dog(int i, int b, int c, int array[]) {

    if (c<array.length-1 && 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)
                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);
}
0
On

You do know that array indexes go from zero to the size of the array minus one (i.e. they are zero-based)? So valid indexes are 0 to array.length - 1 (inclusive), so your check b == array.length +1 is wrong as it allows to high indexes.

Also, those else parts only contain a single little statement, not the rest of the statements on the same line.