赞
踩
解题思路:
- class Solution {
- public boolean canJump(int[] nums) {
- int n = nums.length;
- int maxReach = 0;
- // 正常来说每次至少跳一格,所以最多循环n次
- for (int i = 0; i < n; i++) {
- if (i > maxReach) return false;// 这种情况代表遇到了0,跳不动了
- if (maxReach >= n - 1) return true;
- maxReach = Math.max(maxReach, i + nums[i]);
- }
- return false;
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。