题解 | #跳跃游戏(一)#
跳跃游戏(一)
https://www.nowcoder.com/practice/23407eccb76447038d7c0f568370c1bd
import java.util.*;
public class Solution {
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param nums int整型一维数组
* @return bool布尔型
*/
public boolean canJump (int[] nums) {
// write code here
// 解题思路:从前往后更新目前能跳到的最远的点
int length = nums.length;
int reach = nums[0];
if (length == 1) {
return true;
}
for (int i = 0; i < nums.length; i++) {
if (reach < i) {
return false;
}
if (reach >= length-1) {
return true;
}
reach = Math.max(reach, i + nums[i]);
}
return false;
}
}
