首页 > 代码库 > Leetcode#122 Best Time to Buy and Sell Stock II
Leetcode#122 Best Time to Buy and Sell Stock II
原题地址
如果不限交易次数,把所有递增序列差值求和即可。
代码:
1 int maxProfit(vector<int> &prices) { 2 if (prices.empty()) 3 return 0; 4 5 int profit = 0; 6 int climax = prices[prices.size() - 1]; 7 8 for (int i = prices.size() - 2; i >= 0; i--) { 9 if (prices[i] >= prices[i + 1]) {10 profit += climax - prices[i + 1];11 climax = prices[i];12 }13 }14 profit += climax - prices[0];15 16 return profit;17 }
Leetcode#122 Best Time to Buy and Sell Stock II
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。