198. House Robber

You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping you from robbing each of them is that adjacent houses have security system connected and it will automatically contact the police if two adjacent houses were broken into on the same night.

Given a list of non-negative integers representing the amount of money of each house, determine the maximum amount of money you can rob tonight without alerting the police.

public static int rob2(int[] nums, int begin,int sum) {
        if (begin >= nums.length) {
        
            return sum;
        }
        int sum1=rob2(nums, begin + 2,sum+nums[begin]);
        int sum2=rob2(nums, begin + 1,sum);
        return Math.max(sum1, sum2);
        
    }

这里一定要注意返回的意义要一样,并且选和不选是其实可以参考成一颗二叉树

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容