爱吃炸鸡的小啤酒 level
获赞
22
粉丝
10
关注
10
看过 TA
258
门头沟学院
2024
Web前端
IP属地:浙江
暂未填写个人简介
私信
关注
投递数字马力等公司10个岗位
0 点赞 评论 收藏
分享
2023-09-14 16:07
门头沟学院 Web前端
想不通为什么深搜有问题,求某佬指点一下...function findNode(tree, target) {  if (tree.name === target) {    return tree.val;  }  if (tree.children) {    for (const child of tree.children) {      const result = findNode(child, target);      if (result) {        return result;      }    }  }  return null;}// 输入的树结构const tree = {  val: 'rootVal',  name: 'rootName',  children: [    {      val: 'childVal',      name: 'childName',      children: [        {          val: 'child1-1Val',          name: 'child1-1Name'        }      ]    },    {      val: 'child2Val',      name: 'child2Name'    }  ]};// 输入的目标节点名称const target = 'rootName';const result = findNode(tree, target);console.log(result);
投递海康威视等公司10个岗位
0 点赞 评论 收藏
分享
关注他的用户也关注了:
牛客网
牛客企业服务