我意识到二进制搜索会更有效率,我甚至有一个可以工作,但我需要为实验室编写递归线性搜索。我一直在方法linSearch()
上得到堆栈溢出,特别是在第33行。
我需要搜索1280000大小的数组。
import java.util.Scanner;
public class linSearch {
public static void main(String[] args){
Scanner in = new Scanner(System.in);
System.out.println("enter size");
int size = in.nextInt();
System.out.println("enter numb");
double numb = in.nextDouble();
double [] array = new double[size];
for(int i = 0; i < 30; i++){
for(int j = 0; j < size-1; j++){
double random = (int)(Math.random() * 1000000);
array[j] = (double)(random / 100);
}
int position = linSearch(array, numb, 0);
if(position == -1){
System.out.println("the term was not found");
}
else{
System.out.println("the term was found");
}
}
}
public static int linSearch(double[] array, double key, int counter){
if(counter == array.length){
return -1;
}
if(array[counter] == key){
return counter;
}
else{
counter += 1;
return linSearch(array, key, counter); //error occurs here
}
}
}
如果您的堆栈能够容纳15000个内部调用,那就太幸运了,更不用说128000了但是,如果您已经验证了递归是正确实现的,那么您可以增加堆栈的大小,以便允许更多的调用。根据安装的Java虚拟机(JVM),默认线程堆栈大小可能等于512KB或1MB。
但是,您可以使用-Xss标志来增加线程堆栈的大小。此标志可以通过项目的配置或命令行指定
单击&此处遵循指南
希望这能帮助