leetcode: Jump Game

本文解析了LeetCode上的经典问题“跳跃游戏”。通过分析题目要求及特点,给出了一种线性时间复杂度的解决方案,并详细解释了算法思路。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

问题描述:

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.

 

原问题链接:https://leetcode.com/problems/jump-game/

 

问题分析

  这个问题相对来说比较好理解。在给定的数组里每个索引位置它所能到达的最远距离是它当前的索引值和它对应的值的和。因为要保证在遍历的过程中它都能达到当前的位置,所以我们需要用一个值max来表示它到目前位置为止所能到达的最大值。如果当前的索引比这个max要大的话,则肯定返回false。每次在循环中我们都需要更新max的值,保证它是当前最大的。

  所以可以很容易得到如下的代码实现:

 

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

  这是一个线性时间复杂度的实现。基本上遍历一遍就可以了。 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值