Given an array of non-negative integers, you are initially positioned at the first index of the array.
Each element in the array represents your maximum jump length at that position.
Determine if you are able to reach the last index.
For example:
A = [2,3,1,1,4], return true.
A = [3,2,1,0,4], return false.
当前的数字代表能跳的长度,看一个数组能不能从开始跳到最后。
public class JumpGame {
public boolean canJump(int[] A) {
int gap=1;
for(int i=0;i<A.length-1;i++){
gap--;
if(A[i] > gap)
gap = A[i];
if(gap == 0)
return false;
}
return true;
}
}
本文探讨了一个算法问题,即在一个数组中,根据每个元素表示的最大跳跃距离,判断是否可以从数组的第一个元素跳跃到最后一个元素。通过实现一个算法函数,详细解释了如何遍历数组并使用跳跃距离来决定是否能够成功跳跃到最后。
562

被折叠的 条评论
为什么被折叠?



