I am trying to find the longest sequence of decreasing numbers in an array. I am not sure what I am doing incorrectly in the following code.
public static int getDecSeq(double[] data) {
int currentSeq = 1;
int currentIndex = 1;
int longestSeq = 0;
int longestIndex = 0;
for (int i = currentIndex; i < data.length; i++) {
if (data[i] < data[i - 1]) {
currentSeq++;
} else {
currentSeq = 1;
currentIndex = i;
}
if (currentSeq > longestSeq) {
longestSeq = currentSeq;
longestIndex = currentIndex;
}
//double[] sequence = new double[longestSeq];
//for (int j = longestIndex; j < longestSeq; j++) {
//sequence[j]
//}
}
return longestSeq;
}//close getDecSeq
Looks like now the real problem is how to set up data correctly so that I can use it in the method.
getData(input) returns a bunch of numbers from a file and stores them in an array.
I wrote:
double[] data = getData(input);
System.out.println("longest sequence is" + getDecSeq(data));
I am doing this incorrectly. My methods work. When I declared the variable data as:
double[] data = {119.1, 186.4, 46.3, 89.0 ...};
Everything worked just fine. So how do rewrite the way I call data to work?
getData is
public static double[] getData(Scanner input) {
double[] list = new double[70]; //Construct an array, length 70, to hold values from file
int count = 0;
while (input.hasNextDouble()) {
double n = input.nextDouble();
list[count] = n;
count++;
}
double[] newList = new double[count];
for (int i = 0; i < newList.length; i++ ) {
newList[i] = list[i];
}
return newList;
}//close getData
getData? Please post the code of this function. – Loïc Février Nov 4 '10 at 21:28System.out.println(Arrays.toString(getData(input)));) Do the array contents match what you expect to see? Maybe you're misunderstanding the file format (e.g., does maybe the first line in the file say how many doubles follow?) – Mark Peters Nov 4 '10 at 21:39