45. Jump Game II
Posted warmland
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了45. Jump Game II相关的知识,希望对你有一定的参考价值。
1 public int jump(int[] nums) { 2 if(nums == null || nums.length == 0) { 3 return 0; 4 } 5 int reach = 0; 6 int lastReach = 0; 7 int step = 0; 8 for(int i = 0; i < nums.length; i++) { 9 if(i > lastReach) { 10 lastReach = reach; 11 step++; 12 } 13 reach = Math.max(reach, nums[i] + i); 14 } 15 return (reach >= nums.length - 1)? step: 0; 16 }
以上是关于45. Jump Game II的主要内容,如果未能解决你的问题,请参考以下文章