leetcode-45
Posted CherryTab
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-45相关的知识,希望对你有一定的参考价值。
给定一个非负整数数组,你最初位于数组的第一个位置。
数组中的每个元素代表你在该位置可以跳跃的最大长度。
你的目标是使用最少的跳跃次数到达数组的最后一个位置。
示例:
输入: [2,3,1,1,4]
输出: 2
解释: 跳到最后一个位置的最小跳跃数是 2。
从下标为 0 跳到下标为 1 的位置,跳 1 步,然后跳 3 步到达数组的最后一个位置。
说明:
假设你总是可以到达数组的最后一个位置。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/jump-game-ii
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
package leetcode; import java.util.Arrays; public class Solution45 { public int jump(int[] nums) { int maxPosition = 0; int steps = 0; int end = 0; for (int i = 0; i < nums.length - 1; i++) { maxPosition = Math.max(maxPosition, nums[i] + i); if (end == i) { steps++; end = maxPosition; } } return steps; } }
第二种
public static int jump2(int[] nums) { int position = nums.length - 1; //要找的位置 int steps = 0; while (position != 0) { //是否到了第 0 个位置 for (int i = 0; i < position; i++) { if (nums[i] >= position - i) { position = i; //更新要找的位置 steps++; break; } } } return steps; }
end
以上是关于leetcode-45的主要内容,如果未能解决你的问题,请参考以下文章