Jump Game

时间:2014-02-13 14:49:03   收藏:0   阅读:320

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.

bubuko.com,布布扣
 1 public class Solution {
 2     public boolean canJump(int[] A) {
 3         int len = A.length;
 4         if(len<=0) return false;
 5         int cur =0;
 6         int next =0;
 7         for(int i=0;i<len;i++){
 8             if(i>cur){
 9                 cur = next;
10                 if(i>next) return false;
11             }
12             next = Math.max(next,i+A[i]);
13         }
14         return true;
15     }
16 }
View Code

原文:http://www.cnblogs.com/krunning/p/3547432.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!