122. Best Time to Buy and Sell Stock II
problem description
Say you have an array for which the ith element is the price of a given stock on day i.
Design an algorithm to find the maximum profit. You may complete as many transactions as you like (i.e., buy one and sell one share of the stock multiple times).
Note: You may not engage in multiple transactions at the same time (i.e., you must sell the stock before you buy again).
Example 1:
Example 2:
Example 3:
algorithm thought
可以借助之前只能买一次的思想,只是这里是能买很多次。只要有利润,我们都加上。
首先对于下一天价格比今天低的情况,这时候我们肯定要下一天买而不是这一天高价买。也就是把买进的价格改成下一天的。
如果下一天的价格比今天高,我们直接把利润加上。但是如果之后价格持续走高,我们先不加利润,一直往后看,直到最高的价格,我们用最高的价格减去最低的价格,这是利润增益。
分析可以知道,价格走向只有上面两种,要不是一直递增,要不就是下降。这样就可以归纳成一般情况,写出代码.注意写成一般情况下时,要注意最后的状态,这里最后push一个INT_MIN,就能处理所有情况
code
algorithm analysis
也是一次遍历数组,时间复杂度O(n)
Last updated