leetcode55跳跃游戏
Posted lisin-lee-cooper
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode55跳跃游戏相关的知识,希望对你有一定的参考价值。
一.问题描述
-
给定一个非负整数数组 nums ,你最初位于数组的 第一个下标 。
-
数组中的每个元素代表你在该位置可以跳跃的最大长度。
-
判断你是否能够到达最后一个下标。
-
示例 1:
-
输入:nums = [2,3,1,1,4]
-
输出:true
-
解释:可以先跳 1 步,从下标 0 到达下标 1, 然后再从下标 1 跳 3 步到达最后一个下标。
二.示例代码
public static void main(String[] args) {
int[] nums = new int[]{2, 3, 1, 1, 4};
boolean result = jumpGame(nums);
System.out.println(result);
}
private static boolean jumpGame(int[] nums) {
int n = nums.length;
int maxDistance = 0;
for (int i = 0; i < n; ++i) {
if (i <= maxDistance) {
maxDistance = Math.max(maxDistance, i + nums[i]);
if (maxDistance >= n - 1) {
return true;
}
}
}
return false;
}
以上是关于leetcode55跳跃游戏的主要内容,如果未能解决你的问题,请参考以下文章