[leetcode面试经典150题]-122-买卖股票的最佳时机 II
给你一个整数数组 prices
,其中 prices[i]
表示某支股票第 i
天的价格。
在每一天,你可以决定是否购买和/或出售股票。你在任何时候 最多 只能持有 一股 股票。你也可以先购买,然后在 同一天 出售。
返回 你能获得的 最大 利润 。
思路很简单,如果是上升趋势就叠加利润,如果不是就下一个
func maxProfit(prices []int) int {
profit := 0
for i :=0;i<len(prices)-1;i++{
temp := 0
if prices[i+1] <= prices[i]{
continue
}else {
temp = prices[i+1] - prices[i]
}
profit += temp
}
return profit
}