打家劫舍问题

Posted Alice_yufeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了打家劫舍问题相关的知识,希望对你有一定的参考价值。

class Solution 
    public int rob(int[] nums) 
        if(nums ==null ||nums.length==0)
            return 0;
        
        int[] left=0,0;
        int[] right=nums[0],0;
        for(int i=1;i<nums.length;i++)
            left[0]=right[0];
            left[1]=right[1];
            right[0]=(left[1]+nums[i]);
            right[1]=Math.max(left[0],left[1]);
        

    return Math.max(right[0],right[1]);
    

以上是关于打家劫舍问题的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode ---- 打家劫舍系列问题思路与题解

经典动态规划:打家劫舍系列问题

打家劫舍问题

打家劫舍问题

LeetCode 198. 打家劫舍

LeetCode 198. 打家劫舍