Leetcode—45.跳跃游戏II【中等】

2023每日刷题(四十)

Leetcode—45.跳跃游戏II

Leetcode—45.跳跃游戏II【中等】_第1张图片

贪心法思想

Leetcode—45.跳跃游戏II【中等】_第2张图片

实现代码

#define MAX(a, b) (a > b ? (a) : (b))

int jump(int* nums, int numsSize) {
    int start = 0;
    int end = 1;
    int ans = 0;
    int maxStride = 0;
    while(end < numsSize) {
        maxStride = 0;
        for(int j = start; j < end; j++) {
            maxStride = MAX(maxStride, j + nums[j]);
        }
        start = end;
        end = maxStride + 1;
        ans++;
    }
    return ans;
}

运行结果

Leetcode—45.跳跃游戏II【中等】_第3张图片
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!

你可能感兴趣的:(LeetCode刷题,leetcode,游戏,算法,经验分享,c语言,贪心算法)