House Robber II
Example
Note
Code
public class Solution {
/**
* @param nums: An array of non-negative integers.
* @return: The maximum amount of money you can rob tonight
*/
public int houseRobber2(int[] nums) {
// write your code here
if (nums == null || nums.length == 0) {
return 0;
}
if (nums.length == 1) {
return nums[0];
}
return Math.max(rob(nums, 0, nums.length - 1),
rob(nums, 1, nums.length));
}
public int rob(int[] nums, int start, int end) {
// write your code here
int n = end;
int twoPrev = 0;
int onePrev = nums[start];
for (int i = start + 2; i <= n; i++) {
int curr = Math.max(onePrev, twoPrev + nums[i - 1]);
twoPrev = onePrev;
onePrev = curr;
}
return onePrev;
}
}Last updated