Finding the sum of a nested array(查找嵌套数组的总和)
问题描述
我试图找到一个嵌套数组的所有数字的总和,但我没有让它正常工作.这是我尝试过的:
I tried finding the sum of all numbers of a nested array, but I don't get it to work correctly. This is what I tried:
function arraySum(i) {
sum = 0;
for (a = 0; a < i.length; a++) {
if (typeof i[a] == 'number') {
sum += i[a];
} else if (i[a] instanceof Array) {
sum += arraySum(i[a]);
}
}
return sum;
}
当您尝试使用数组 [[1,2,3],4,5]
时,它会得到 6
作为答案,而不是 15代码>.有人知道哪里有错吗?
When you try it out with the array [[1,2,3],4,5]
, it gets 6
as the answer, instead of 15
.
Does somebody know where there is a mistake in it?
推荐答案
你的代码的问题是 sum
和 a
变量是全局的,而不是局部的.因此,您会得到一个无限循环(函数中第一个条目的 a 被第二个条目重置,因此再次处理相同的元素).
The problem with your code is that the sum
and a
variables are global, instead of local. Because of this you get an infinite loop (a from the first entry in the function is reset by the second entry, so the same elements are processed again).
通过将 var
添加到声明 sum
和 a
的位置来修复它,以使它们成为函数的局部变量:
Fix it by adding var
to where sum
and a
are declared to make them local to the function:
function arraySum(i) {
var sum=0; // missing var added
for(var a=0;a<i.length;a++){ // missing var added
if(typeof i[a]=="number"){
sum+=i[a];
}else if(i[a] instanceof Array){
sum+=arraySum(i[a]);
}
}
return sum;
}
演示:http://jsbin.com/eGaFOLA/2/edit
这篇关于查找嵌套数组的总和的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:查找嵌套数组的总和
基础教程推荐
- Chart.js 在线性图表上拖动点 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01