跳跃游戏
给定一个非负整数数组 nums ,你最初位于数组的 第一个下标 。
数组中的每个元素代表你在该位置可以跳跃的最大长度。
判断你是否能够到达最后一个下标。
示例 1:
输入:nums = [2,3,1,1,4]
输出:true
解释:可以先跳 1 步,从下标 0 到达下标 1, 然后再从下标 1 跳 3 步到达最后一个下标。
1
2
3
2
3
/**
* @param {number[]} nums
* @return {boolean}
*/
var canJump = function(nums) {
let rightBound = nums[0]
let len = nums.length
let ans = false
if(len === 1) return true
// 从第一个开始跳,那么第一次的右终点就是 0 + nums[0]
for(let i = 0; i <= rightBound; i++) {
// 遍历的过程中 不断更新本次未到终点前 这些点各自能达到的最远位置
rightBound = Math.max(rightBound, i + nums[i])
// 如果发现某个点能到达的最远位置已经超过了数组的最后一个下标,那么说明可以达到最后一个下标
// 否则遍历会停在rightBound位置,遍历结束,不能达到最后一个下标
if(rightBound >= len - 1) {
ans = true
break
}
}
return ans
};
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/jump-game