码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode 121. 买卖股票的最佳时机

时间:2018-07-26 23:28:20      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:break   amp   cto   bsp   auto   leetcode   front   color   stack   

class Solution {
public:
    int maxProfit(vector<int>& prices) {
        if(prices.size()==0)
            return 0;
        int maxProfit = 0x80000000;
        vector<int> stack;
        stack.push_back(prices[0]);
        for(int i=1;i<prices.size(); ++i)
        {
            if(stack.back() < prices[i])
            {
                stack.push_back(prices[i]);
            }
            else
            {
                maxProfit = max(maxProfit, stack.back()-stack.front());
                stack.pop_back();
                while(stack.size()>0)
                {
                    auto tmp = stack.back();
                    if(tmp >= prices[i])
                    {
                        stack.pop_back();
                    }
                    else
                    {
                        break;
                    }
                }
                stack.push_back(prices[i]);
            }
        }
        if(stack.size() == 1)
        {
            maxProfit = max(maxProfit, 0);
        }
        else
        {
            maxProfit = max(maxProfit, stack.back()-stack.front());
        }
        return maxProfit;
    }
};

 

Leetcode 121. 买卖股票的最佳时机

标签:break   amp   cto   bsp   auto   leetcode   front   color   stack   

原文地址:https://www.cnblogs.com/randyniu/p/9374752.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!