LC213. 打家劫舍 II

发布时间:2024年01月21日

?代码随想录

class Solution {
    public int rob(int[] nums) {
        if(nums == null || nums.length == 0){
            return 0;
        }

        int len = nums.length;
        if(len == 1){
            return nums[0];
        }

        return Math.max(
            robAction(nums,0,len-1),
            robAction(nums,1,len)
        );
    }

    public int robAction(int [] nums, int start, int end){
        int x = 0 ;
        int y = 0;
        int z = 0;

        for(int i = start ; i < end; i ++){
            y = z ;
            z = Math.max(
                y, x + nums[i]
            );
            x = y;
        }
        return z;

    }

}

文章来源:https://blog.csdn.net/xuan__xia/article/details/135726530
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。