代码随想录算法训练营第32天 | 122. 买卖股票的最佳时机 II 55. 跳跃游戏 45. 跳跃游戏 II

一、Leetcode 122. 买卖股票的最佳时机 II

解决 i+1> nums.size()的方法:

        for (int i = 1; i < prices.size(); i++){
            diff[i] = prices[i] - prices[i - 1];

二、Leetcode 55. 跳跃游戏

难点在于,在遍历nums的过程中,如果cover不了 i+1,那就没法往下跳了;

三、Leetcode 45. 跳跃游戏 II

难点在于,在遍历nums的过程中,如果curCover都走完了还没到终点,那只能再加一步,并且更新curCover成为最大的preCover即可。

你可能感兴趣的:(刷题,算法,游戏,leetcode)