学习不会让人秃头 2022-09-08 21:30 采纳率: 50%
浏览 270
已结题

js数组添加有长度但是没有数据

js 有长度但是没有数据,考虑到是可能是异步问题或者深拷贝,但是不知道怎么修改
    let candidates = [2, 3, 6, 7]
    let target = 7
    let path = []
    let sum = 0
    let startindex = 0
    var res = []
    function backTracing(candidates, target, sum, startindex) {
        if (sum > target) {
            return
        }
        if (sum === target) {
            res.push(path)
            console.log(path);
            return res
        }

        for (let i = startindex; i < candidates.length; i++) {
            path.push(candidates[i])
            sum += candidates[i]
            // console.log(sum);
            backTracing(candidates, target, sum, i)
            sum -= candidates[i]
            path.pop()
        }

        return res
    }


    abc = backTracing(candidates, target, sum, startindex)

        console.log(abc);let candidates = [2, 3, 6, 7]
    let target = 7
    let path = []
    let sum = 0
    let startindex = 0
    var res = []
    function backTracing(candidates, target, sum, startindex) {
        if (sum > target) {
            return
        }
        if (sum === target) {
            res.push(path)
            console.log(path);
            return res
        }

        for (let i = startindex; i < candidates.length; i++) {
            path.push(candidates[i])
            sum += candidates[i]
            // console.log(sum);
            backTracing(candidates, target, sum, i)
            sum -= candidates[i]
            path.pop()
        }

        return res
    }


    abc = backTracing(candidates, target, sum, startindex)

        console.log(abc);
运行结果及报错内容

img

我想要达到的结果

img

  • 写回答

1条回答 默认 最新

  • 音药 2022-09-09 09:03
    关注

    res.push(path) 改成 res.push([...path])

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 9月21日
  • 已采纳回答 9月13日
  • 创建了问题 9月8日

悬赏问题

  • ¥15 如何让子窗口鼠标滚动独立,不要传递消息给主窗口
  • ¥15 如何能达到用ping0.cc检测成这样?如图
  • ¥15 关于#DMA固件#的问题,请各位专家解答!
  • ¥15 matlab生成的x1图不趋于稳定,之后的图像是稳定的水平线
  • ¥15 请问华为OD岗位的内部职业发展通道都有哪些,以及各个级别晋升的要求
  • ¥20 微信小程序 canvas 问题
  • ¥15 系统 24h2 专业工作站版,浏览文件夹的图库,视频,图片之类的怎样删除?
  • ¥15 怎么把512还原为520格式
  • ¥15 MATLAB的动态模态分解出现错误,以CFX非定常模拟结果为快照
  • ¥15 求高通平台Softsim调试经验