Leetcode-122-best-time-to-buy-and-sell-stock-ii | 买卖股票的最佳时机II 发表于 2019-12-06 更新于 2022-04-27 分类于 LeetCode-Solutions 阅读次数: 本文字数: 334 阅读时长 ≈ 1 分钟 题目链接 买卖股票的最佳时机 II 122. Best Time to Buy and Sell Stock II 解题思路由于没有规定交易次数,所以可以遍历prices数组。如果后一个比前一个大,做差,并累积利润,最后返回结果。 代码12345678910func maxProfit(prices []int) int { maxProfit := 0 //最大利润 for i := 0; i < len(prices)-1; i++ { if prices[i+1] > prices[i] { //如果后一笔比前一笔数额大,做减法,累积利润 maxProfit = maxProfit + prices[i+1] - prices[i] } } return maxProfit} ------ 本文结束------ 如果本篇文章对你有帮助,可以给作者加个鸡腿~(*^__^*),感谢鼓励与支持! 打赏 微信支付 支付宝 本文作者: Neo Zhang 本文链接: https://octopuslian.github.io/2019/12/06/leetcode-122-best-time-to-buy-and-sell-stock-ii/ 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!