赞
踩
给定一个非负整数数组,你最初位于数组的第一个位置。
数组中的每个元素代表你在该位置可以跳跃的最大长度。
你的目标是使用最少的跳跃次数到达数组的最后一个位置。
示例:
说明: 假设你总是可以到达数组的最后一个位置。
- public static int jump(int[] nums) {
- int result = 0;
- // 当前覆盖的最远距离下标
- int end = 0;
- // 下一步覆盖的最远距离下标
- int temp = 0;
- for (int i = 0; end < nums.length - 1; ++i) {
- temp = Math.max(temp, i + nums[i]);
- // 可达位置的改变次数就是跳跃次数
- if (i == end) {
- end = temp;
- result++;
- }
- }
- return result;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。