首页 > 其他 > 详细

leetcode: Jump Game

时间:2016-04-29 02:09:07      阅读:303      评论:0      收藏:0      [点我收藏+]

问题描述:

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;
    }
}

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

?

leetcode: Jump Game

原文:http://shmilyaw-hotmail-com.iteye.com/blog/2293628

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!