美文网首页
leetcode题目55. 跳跃游戏

leetcode题目55. 跳跃游戏

作者: castlet | 来源:发表于2022-02-21 22:47 被阅读0次

    题目描述

    链接:https://leetcode-cn.com/problems/jump-game/
    给定一个非负整数数组 nums ,你最初位于数组的 第一个下标 。数组中的每个元素代表你在该位置可以跳跃的最大长度。判断你是否能够到达最后一个下标。

    示例

    输入:nums = [2,3,1,1,4]
    输出:true
    解释:可以先跳 1 步,从下标 0 到达下标 1, 然后再从下标 1 跳 3 步到达最后一个下标。
    

    代码

    // 题解:https://leetcode-cn.com/problems/jump-game/solution/tiao-yue-you-xi-by-leetcode-solution/
        public boolean canJump(int[] nums) {
            if (nums == null || nums.length <= 1) {
                return true;
            }
    
            int maxReach = 0;
            for (int i = 0; i < nums.length; i++) {
                if (i > maxReach) {
                    return false;
                }
                maxReach = Math.max(maxReach, i + nums[i]);
            }
            return true;
        }
    

    相关文章

      网友评论

          本文标题:leetcode题目55. 跳跃游戏

          本文链接:https://www.haomeiwen.com/subject/gjdwlrtx.html