Leetcode 45. Jump Game II

本文介绍了一种基于广度优先搜索(BFS)的算法,用于解决数组中找到从起始位置到达最后一个位置所需的最少跳跃次数的问题。通过将数组中的每个数映射到一个层级,该算法能够有效地找出最短路径。

BFS solution for reference. 

/**
 * Breadth first search o(n).
 * Map each number in the array to a level,
 * where numbers in level i are all the numbers that can be reached in i-1th jump.
 * e.g. 2, 3, 1, 1, 4
 * level 0: 2
 * level 1: 3, 1
 * level 2: 1, 4
 * The minimum jump is 2.
 */ 
public class Solution {
    public int jump(int[] nums) {
        if (nums.length < 2) return 0;
        int i = 1, lvl = 1, maxReach = nums[0], nextMax = 0;
        while (maxReach < nums.length-1) {
            for (; i<=maxReach; i++)
                // find the max reach of a level
                // there always exists a i+nums[i] >= maxReach (*)
                // so we can use nextMax to record the maxReach
                nextMax = Math.max(i+nums[i], nextMax); 
            // maxReach doesn't move forward after scanning a level
            // which means we can never jump to the end
            if (maxReach == nextMax) return Integer.MAX_VALUE;
            maxReach = nextMax;
            lvl++;
        }
        return lvl;
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值