美文网首页
递归对tree求和每一层节点数量

递归对tree求和每一层节点数量

作者: jesse28 | 来源:发表于2022-01-02 16:41 被阅读0次
    image.png

    对这类解构的数据进行求和

    //递归对数节点求和
       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