摘要: 122.买卖股票的最佳时机II 注意: 1,第一个和最后一个 2,只有一个数的情况 3,2255,这种情况 思路: 1,买入:左:空/高/平 右:高 2,卖出:左:低 右:空/ 低/平 代码: 1 int maxProfit(vector<int>& prices) { 2 int result = 阅读全文
posted @ 2023-07-08 09:56 博二爷 阅读(4) 评论(0) 推荐(0) 编辑