标签:维数 cut 代码调试 文件 public 判断 循环 ring 网上
解决方式:最后找到方法在左加右减的那里做递归。代码如下:
static boolean pal(int left, int Right, String str) {
boolean result = true;
if (str.charAt(left) == str.charAt(Right) && left < Right) {
left++;
Right--;
pal(left, Right, str);
}else
result = false;
return result;
在参考赵晓海同学的想法后用二维数组来储存,自己一直没想到二维数组,以后要加深理解。
An infinite loop and an infinite recursion:
A . are different because it is impossible to detect the latter, while it‘s quite easy to detect the former
B . both continue to repeat indefinitely
C . both will be caught by the compiler
D . both will be caught by the Java Virtual Machine during execution
E . none of the above
错误:A;正确:B
解析:无限循环和无限递归都会没有限制的重复。
递归还是蛮难的,看例子的时候就十分困难,感觉还是需要继续学习递归。
代码行数(新增/累积) | 博客量(新增/累积) | 学习时间(新增/累积) | 重要成长 | |
---|---|---|---|---|
目标 | 5000行 | 30篇 | 400小时 | |
第一周 | 200/200 | 2/2 | 20/20 | |
第二周 | 300/500 | 1/3 | 18/38 | |
第三周 | 500/1000 | 1/4 | 22/60 | |
第四周 | 300/1300 | 1/5 | 30/90 | |
第五周 | 700/ 2000 | 1/6 | 30/120 | |
第六周 | 792/2792 | 1/7 | 30/150 | |
第七周 | 823/3559 | 1/8 | 30/180 | |
第八周 | 774/4333 | 3/9 | 30/ 210 | |
第九周 | 426/4759 | 2/11 | 30/ 240 |
20172307 2017-2018-2 《程序设计与数据结构》第10周学习总结
标签:维数 cut 代码调试 文件 public 判断 循环 ring 网上
原文地址:https://www.cnblogs.com/20172307hyt/p/9064929.html