对这类解构的数据进行求和
//递归对数节点求和
countSum(arr){
for(let i=0; i<arr.length; i++) {
if(arr[i] && arr[i].children) {
this.sum += arr[i].children.length
this.countSum(arr[i].children);
}
}
},
对这类解构的数据进行求和
//递归对数节点求和
countSum(arr){
for(let i=0; i<arr.length; i++) {
if(arr[i] && arr[i].children) {
this.sum += arr[i].children.length
this.countSum(arr[i].children);
}
}
},
本文标题:递归对tree求和每一层节点数量
本文链接:https://www.haomeiwen.com/subject/ylizqrtx.html
网友评论