416题求助

来源:9-5 0-1背包问题

幕布斯1098637

2019-05-28

class Solution {
    public boolean canPartition(int[] nums) {

        if(nums == null || nums.length == 0)
            return true;
        
        int sum = 0;
        for (int i = 0; i < nums.length; i ++){
            sum += nums[i];
        }
        
        //sum为奇数时直接return false
        if (sum % 2 == 1)
            return false;
        
        //sum is even
        int target = sum/2;
        //只要找到target就好了,剩下的元素和一定也为sum/2;
        return helper(nums, target, 0);
    }
    
    private boolean helper(int[] nums, int target, int index){
        if (target == 0)
            return true;
        if (target < 0)
            return false;
        if (index  == nums.length)
            return false;
        //选或者不选
        return helper(nums,target,index + 1) || helper(nums,target - nums[index],index + 1);
    }
}

我这个算法是2^n的时间复杂度,我想用一个二维数据memo记录一下重复被调用的函数,但是没想出来,可以麻烦老师给个idea吗?还是说最好还是用dp写

Link:    https://leetcode.com/problems/partition-equal-subset-sum/

写回答

1回答

liuyubobobo

2019-05-29

记忆化搜索的思路可以参考这里:https://github.com/liuyubobobo/Play-Leetcode/blob/master/0416-Partition-Equal-Subset-Sum/cpp-0416/main.cpp


其实完全是背包问题,请仔细比较这个问题和背包问题之间的区别和联系,看看能不能更深入的理解背包问题?


加油!:)

0
0

玩转算法面试-- Leetcode真题分门别类讲解

课程配套大量BAT面试真题,高频算法题解析,强化训练

7410 学习 · 1150 问题

查看课程