力扣算法学习day23-2
文章目录
力扣算法学习day23-2122-买卖股票的最佳时机 II题目代码实现
55-跳跃游戏题目代码实现
力扣算法学习day23-2
122-买卖股票的最佳时机 II
题目
代码实现
class Solution {
public int maxProfit(int[] prices) {
// 局部最优-->总体最优,局部后一天有赚则买,然后第二天卖。总体则最大利润。0ms
int[] change = new int[prices.length];
int sum = 0;
for(int i = 1;i < prices.length;i++){ change[i] = prices[i] - prices[i-1]; } fo
力扣算法学习day23-2最先出现在Python成神之路。
共有 0 条评论