Leetcode55 Jump Game
Posted xuweimdm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode55 Jump Game相关的知识,希望对你有一定的参考价值。
Jump Game
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.
Solution
- 在Leetcode45 Jump Game II中,可以将那里的思路非常好的应用到这里。
public class Solution
public boolean canJump(int[] nums)
int farthest = 0;
for(int i=0;i<nums.length;i++)
farthest = Math.max(farthest,i+nums[i]);
if(farthest>=nums.length-1) return true;
if(farthest<=i) return false;
return true;
以上是关于Leetcode55 Jump Game的主要内容,如果未能解决你的问题,请参考以下文章