Leetcode 121. Best Time to Buy and Sell Stock

Say you have an array for which the ith element is the price of a given stock on day i.

If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the stock), design an algorithm to find the maximum profit.

Example 1:
Input: [7, 1, 5, 3, 6, 4]
Output: 5

max. difference = 6-1 = 5 (not 7-1 = 6, as selling price needs to be larger than buying price)
Example 2:
Input: [7, 6, 4, 3, 1]
Output: 0

In this case, no transaction is done, i.e. max profit = 0.

分析

找出一段最大值和最小值之差。使用貪心法,如果碰到一個(gè)更大的,計(jì)算當(dāng)前利潤(rùn),如果更大保存在結(jié)果中,如果碰到更小的,就以該小值重新初始化最大和最小值,然后向后計(jì)算。
還有一種Kadane's Algorithm,一直遞加前個(gè)元素和后個(gè)元素之差,如果小于0,賦值0,然后找到這個(gè)過(guò)程中最大的值即可。

int maxProfit(int* prices, int pricesSize) {
    if(pricesSize==0||pricesSize==1)return 0;
    
    int min=prices[0],max=prices[0],profit=0;
    for(int i=1;i<pricesSize;i++)
    {
        if(prices[i]>max)
            max=prices[i];
        if(prices[i]<min)
        {
            min=prices[i];
            max=prices[i];
        }
        if(max-min>profit)
            profit=max-min;
    }
    return profit;
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

推薦閱讀更多精彩內(nèi)容