- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要有关此递归方法的帮助。我需要它来添加从起点到终点的整数。
public static int sumInts(int begin, int end){
if (begin == end)
return begin + end;
else
return sumInts(begin+1,end);
}
示例输出应该是:
开始:1
结束:4
总和是:10
但我得到 8
作为那些特定输入的输出。我知道这是破坏它的条件,但我似乎无法弄清楚..
最佳答案
But I'm getting 8 as my output for those particular input.
这很正常。除了最后一次,它每次都会转到 else
block ,因为 begin
和 end
都是 4
并且它将返回 4 + 4 = 8
。
你应该这样做:
public static int sumInts(int begin, int end){
if (begin == end)
return end; // return the last number
else
return begin + sumInts(begin+1,end); // sum the current number with the recursion result
}
这当然可以通过其他方式完成 - 通过减少 end
而不是增加 begin
。
public static int sumInts(int begin, int end){
if (begin == end)
return begin;
else
return end + sumInts(begin,end-1);
}
关于JAVA:使用递归从头到尾加法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42585525/
我非常确定 IoC 是适合我的应用程序的方法。 SO 上有大量文章甚至问题都在讨论不同的容器。我今天阅读了几篇带有部分示例的博客。我个人倾向于从 CommonServiceLocator 和 Unit
这个问题在这里已经有了答案: How to read a text file reversely with iterator in C# (11 个答案) 关闭 3 年前。 我有一个包含一系列价格数
编辑 在经历了如此多的努力却只产生了错误的 .exe 文件之后,我们决定不再花更多的时间尝试生成代码,而是自己编写代码。谢谢大家的宝贵时间。 _/_/_/_/_/_/_/_/_/_/_/_/_/_/_
我正在尝试匹配 span具有特定类名的元素以及其开始和结束之间的所有内容。 我的正则表达式是 /]*"myClass".*?/gi 。它适用于 ... ,但它在类似下面的情况下失败,仅扩展到第一个
我是一名优秀的程序员,十分优秀!