博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JAVA代码—算法基础:跳跃游戏(II)
阅读量:4041 次
发布时间:2019-05-24

本文共 2013 字,大约阅读时间需要 6 分钟。

跳跃游戏(Jump Game II)

问题描述:

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.
Your goal is to reach the last index in the minimum number of jumps.

For example:

Given array A = [2,3,1,1,4]

The minimum number of jumps to reach the last index is 2. (Jump 1 step from index 0 to 1, then 3 steps to the last index.)

Note:

You can assume that you can always reach the last index.

算法设计:

package com.bean.algorithmbasic;public class JumpGameII {    public static int jump(int[] nums) {        // If nums.length < 2, means that we do not        // need to move at all.        if (nums == null || nums.length < 2) {            return 0;        }        // First set up current region, which is        // from 0 to nums[0].        int l = 0;        int r = nums[0];        // Since the length of nums is greater than        // 1, we need at least 1 step.        int step = 1;        // We go through all elements in the region.        while (l <= r) {            // If the right of current region is greater            // than nums.length - 1, that means we are done.            if (r >= nums.length - 1) {                return step;            }            // We should know how far can we reach in current            // region.            int max = Integer.MIN_VALUE;            for (; l <= r; l++) {                max = Math.max(max, l + nums[l]);            }            // If we can reach far more in this round, we update            // the boundary of current region, and also add a step.            if (max > r) {                l = r;                r = max;                step++;            }        }        // We can not finish the job.        return -1;    }    public static void main(String[] args) {        // TODO Auto-generated method stub        int [] arrayDemo= {
2,3,1,1,4}; int result=jump(arrayDemo); System.out.println("ANSWER is: "+result); }}

(完)

转载地址:http://rrvdi.baihongyu.com/

你可能感兴趣的文章
【剑指offer】q50:树中结点的最近祖先
查看>>
二叉树的非递归遍历
查看>>
【leetcode】Reorder List (python)
查看>>
【leetcode】Linked List Cycle (python)
查看>>
【leetcode】Linked List Cycle (python)
查看>>
【leetcode】Word Break(python)
查看>>
【leetcode】Candy(python)
查看>>
【leetcode】Clone Graph(python)
查看>>
【leetcode】Sum Root to leaf Numbers
查看>>
【leetcode】Pascal's Triangle II (python)
查看>>
java自定义容器排序的两种方法
查看>>
如何成为编程高手
查看>>
本科生的编程水平到底有多高
查看>>
AngularJS2中最基本的文件说明
查看>>
从头开始学习jsp(2)——jsp的基本语法
查看>>
使用与或运算完成两个整数的相加
查看>>
备忘:java中的递归
查看>>
DIV/CSS:一个贴在左上角的标签
查看>>
/proc文件系统读出来的数据是最新的吗?
查看>>
Solr及Spring-Data-Solr入门学习
查看>>