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.
第一种方法就是动态规划的,利用一个布尔类型的数组装着数组中所有的元素能否到达最后一个元素。不过这种超时了。
超时
// version1: Dynamic Programming
public boolean canJump(int[] nums) {
boolean[]

该博客讨论了LeetCode上的第55题——Jump Game,通过贪心算法来确定是否能从数组的第一个元素跳到最后一个。文章提到了两种方法,其中贪心算法能有效避免超时问题,通过计算数组的最大跳跃长度来判断是否能到达数组末尾。
订阅专栏 解锁全文
162

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



