java刷题--55跳跃游戏

Posted Anrys

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java刷题--55跳跃游戏相关的知识,希望对你有一定的参考价值。

java刷题--55跳跃游戏

题目

在这里插入图片描述

代码

class Solution {
    public boolean canJump(int[] nums) {
    int len = nums.length,rightmost=0;
    for(int i=0; i<len;i++){
        if(i<=rightmost){
            rightmost = Math.max(rightmost,i+nums[i]);
            if(len-1<=rightmost) return true;
        }
    }return false;
  }
}

有点动态规划的味道

结果

在这里插入图片描述

以上是关于java刷题--55跳跃游戏的主要内容,如果未能解决你的问题,请参考以下文章

java刷题--45跳跃游戏II

LeetCode刷题笔记-动态规划-day4

LeetCode刷题笔记-动态规划-day4

LeetCode刷题笔记-动态规划-day4

[leetcode] 55. 跳跃游戏

Leetcode55. 跳跃游戏(JAVA贪心)