- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我无法通过引用传递整数,我如何携带此函数的结果:
function operation(k, n, result) {
if (k == 0) {
console.log(n);
result += n;
return result;
} else {
//the result variable its back to the old value when the recursions goes back
for (var i = 1; i <= n; i++) {
operation(k - 1, i, result);
}
}
}
console.log('resultado = ', operation(2, 3, 0));
当 k=0 时,我需要在结果上累积 n 值,但结果会返回到较旧的值。我不确定如何实现
最佳答案
在 JavaScript 中,参数是按值传递的:result
参数是递归函数执行上下文中的一个单独变量。
正如 @Pointy 在评论中所说,您需要将返回值分配回 result
。这个想法是返回新值。
看起来像这样:
function operation(k, n, result) {
if (k == 0) {
result += n;
} else {
for (var i = 1; i <= n; i++) {
result = operation(k - 1, i, result);
}
}
return result;
}
console.log('resultado = ', operation(2, 3, 0));
因此,使用该模式,您根本不会将结果
作为参数传递:
function operation(k, n) {
if (k == 0) return n;
let result = 0; // we start from scratch
for (var i = 1; i <= n; i++) {
result += operation(k - 1, i); // note the addition here!
}
return result;
}
console.log('resultado = ', operation(2, 3));
关于javascript - 递归运算如何携带结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57738972/
数据: structure(list(id = c(1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 4, 4, 5), ax = c("a", "a", "b
我目前正在离散数学课上做一个项目,我们必须编码: 1.) RippleCarryAdder:它是一个用于添加固定大小的 5 位整数的电路。参数: x_array: operand 1, i.e. an
所以我已经让这两个数组在不需要携带任何东西时正确添加。所以 a[0,1,1] + b[0,1,1] 会给我 c[0,0,2,2],但如果我类似地做 a[0,9,9] + b[0, 9,9] 我只得到
我正在尝试使用 getline 从 .csv 文件中获取数据,但它不会在换行符处停止。代码: while (file.good()) { getline(file, value, ',
下面是我的代码 from docutils.core import publish_string from docutils.writers.html4css1 import Writer as Hi
我是一名优秀的程序员,十分优秀!