题解 | #加起来和为目标值的组合#

加起来和为目标值的组合

https://www.nowcoder.com/practice/172e6420abf84c11840ed6b36a48f8cd

using System;
using System.Collections.Generic;


class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     *
     * @param target int整型
     * @param nums int整型一维数组
     * @return int整型二维数组
     */
    public List<List<int>> combinationCount (int target, List<int> nums) {
        // write code here
        if (nums.Count == 0 || target == 0)
            return new List<List<int>>();
        List<List<int>> lslsN = new List<List<int>>();
        List<int> lsN = new List<int>();
        DG(target, nums, lslsN, 0, lsN);
        return lslsN;
    }

    public void DG(int target, List<int> nums, List<List<int>> lslsN, int nCurR,
                   List<int> lsN) {
        for (int i = 0; i < nums.Count; i++) {
            if (nCurR + nums[i] > target)
                continue;
            List<int> lsNT = new List<int>();
            lsNT.AddRange(lsN);
            lsNT.Add(nums[i]);
            if (nCurR + nums[i] == target) {
                lsNT.Sort();
                int nFindIndex = lslsN.FindIndex(r => string.Join("", r).Equals(string.Join("",
                                                 lsNT)));
                if (nFindIndex == -1)
                    lslsN.Add(lsNT);
                continue;
            }
            DG(target, nums, lslsN, nCurR + nums[i], lsNT);
        }
    }
}

全部评论

相关推荐

一个菜鸡罢了:哥们,感觉你的简历还是有点问题的,我提几点建议,看看能不能提供一点帮助 1. ”新余学院“别加粗,课程不清楚是否有必要写,感觉版面不如拿来写一下做过的事情,教育经历是你的弱势就尽量少写 2. “干部及社团经历”和“自我评价”删掉 3. 论文后面的“录用”和“小修”啥的都删掉,默认全录用,问了再说,反正小修毕业前肯定能发出来 4. 工作经验和研究成果没有体现你的个人贡献,着重包装一下个人贡献
点赞 评论 收藏
分享
头像
11-09 17:30
门头沟学院 Java
TYUT太摆金星:我也是,好几个华为的社招找我了
点赞 评论 收藏
分享
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务