I am finding it a little bit difficult to get a search algorithm to work properly in Java. Basically, the program has an array initialized. The user is supposed to enter a number via the keyboard, and Java will them print out the all the indexes where this number is found. My main problem lies in the fact that I want create a method which currently looks as follows:
public static int[] linsearch(int[] numbers, int key) {
int[] indexvalues = null;
int n = 0;
for (int i = 0; i < numbers.length; i++) {
if (numbers[i] == key) {
indexvalues[n] = i;
n++;}
}
return indexvalues;
}
The idea behind this is that given an array, and a number (in this case identified by "key"), the program will create a new array in which the indexes of where the number "key" is found in the original array will be saved. Currently I get this error message: java.lang.NullPointerException. I have tried different approaches to initializing this array, but none have been succesful so far. Thus, any help will be very appreciated!