【发布时间】:2016-12-30 03:14:36
【问题描述】:
我需要找到数组中数字之间的最长路径(从大到小)。
我尝试编写recursive 函数并得到java.lang.StackOverflowError,但由于缺乏知识,我不明白为什么会这样。
首先,我初始化了数组并用随机数填充它:
public long[] singleMap = new long[20];
for (int i = 0; i < 20; i++) {
singleMap[i] = (short) random.nextInt(30);
}
然后,我尝试找到最长的倒数路线(例如 { 1, 4, 6, 20, 19, 16, 10, 6, 4, 7, 6, 1 。 ..} ) 并返回这些数字的计数。
public int find(long[] route, int start) {
if (route[start] > route[start + 1]) {
find(route, start++);
} else {
return start;
}
return start;
}
所以这里是日志:
08-23 13:06:40.399 4627-4627/itea.com.testnotification I/dalvikvm: threadid=1: stack overflow on call to Litea/com/testnotification/MainActivity;.find:ILI
08-23 13:06:40.399 4627-4627/itea.com.testnotification I/dalvikvm: method requires 36+20+12=68 bytes, fp is 0x4189e318 (24 left)
08-23 13:06:40.399 4627-4627/itea.com.testnotification I/dalvikvm: expanding stack end (0x4189e300 to 0x4189e000)
08-23 13:06:40.400 4627-4627/itea.com.testnotification I/dalvikvm: Shrank stack (to 0x4189e300, curFrame is 0x418a3e88)
08-23 13:06:40.400 4627-4627/itea.com.testnotification D/AndroidRuntime: Shutting down VM
08-23 13:06:40.400 4627-4627/itea.com.testnotification W/dalvikvm: threadid=1: thread exiting with uncaught exception (group=0x41a8ed40)
08-23 13:06:40.414 4627-4627/itea.com.testnotification E/AndroidRuntime: FATAL EXCEPTION: main
Process: itea.com.testnotification, PID: 4627
java.lang.StackOverflowError
at itea.com.testnotification.MainActivity.find(MainActivity.java:46)
at itea.com.testnotification.MainActivity.find(MainActivity.java:46)
感谢任何解释,因为所有相关问题都没有帮助我。如果我的功能有问题,请指正或解释。
编辑
我忘了说,我使用for 来检查每个“点”的最长路径
for (int i = 0; i < singleMap.length - 1; i++) {
int x = find(singleMap, i);
System.out.println("steps = " + x);
}
【问题讨论】:
-
start++返回start的原始值,并在之后将start加1。++start将 1 加到start之前返回值。 -
你应该添加一个 Log.i("Start", start.toString());将您的 find 方法作为第一行,这样您就可以看到会发生什么。
标签: java recursion stack-overflow