算法day36-动态规划(9)
目录[*]买卖股票的最佳时机IV
[*]最佳买卖股票时机含冷冻期⭐⭐⭐
[*]买卖股票的最佳时机含手续费
一、买卖股票的最佳时机IV
https://leetcode.cn/problems/best-time-to-buy-and-sell-stock-iv/description/?envType=problem-list-v2&envId=8At1GmaZ
class Solution { public int maxProfit(int k, int[] prices) { int length = prices.length; int[][] dp = new int; for(int i=1; i
页:
[1]