Bootstrap

Leetcode Hot100 跳跃游戏

给你一个非负整数数组nums,你最初位于数组的第一个下标。 数组中的每个元素代表你在该位置可以跳跃的最大长度。

判断你是否能够到达最后一个下标,如果可以,返回 true; 否则,返回 false。

示例 1:
输入:nums = [2,3,1,1,4]
输出:true
解释:可以先跳 1 步,从下标 0 到达下标 1, 然后再从下标 1 跳 3 步到达最后一个下标。

示例 2:
输入:nums = [3,2,1,0,4]
输出:false
解释:无论怎样,总会到达下标为 3 的位置。但该下标的最大跳跃长度是 0 , 所以永远不可能到达最后一个下标。

本题是一道典型的贪心算法,思路是遍历数组中每一个元素,尝试找到第一个可以跳过终点的元素
每一位元素的跳跃距离就是他自身的数值
那么对于元素下标i可以跳到的最远距离的下标位置,就是i + nums[i]

public boolean canJump(int[] nums) {
    if (nums == null || nums.length == 0) {
        return false;
    }

    int canJumpMaxIndex = 0;
    for (int i = 0; i <= canJumpMaxIndex; i++) {
        int temp = i + nums[i];

        canJumpMaxIndex = Math.max(canJumpMaxIndex, temp);

        if (canJumpMaxIndex >= nums.length - 1) {
            return true;
        }
    }

    return false;
}
;