美文网首页
best-time-to-buy-and-sell-stock

best-time-to-buy-and-sell-stock

作者: DaiMorph | 来源:发表于2019-07-21 22:04 被阅读0次
class Solution {
public:
    int maxProfit(vector<int> &prices) {
        if(prices.size()<2)return 0;
        int left_min=prices[0],res=0;
        for(int i=0;i<prices.size();i++)
        {
            res=max(res,prices[i]-left_min);
            left_min=min(left_min,prices[i]);
        }
        return res;
    }
};

相关文章

网友评论

      本文标题:best-time-to-buy-and-sell-stock

      本文链接:https://www.haomeiwen.com/subject/eojdlctx.html