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

买卖股票的最佳时机

时间:2017-03-08 00:57:17      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:ice   pre   space   name   vector   price   ++   namespace   max   

class Solution {
public:
    int maxProfit(vector<int> &prices) {
        using namespace std;
           int profit=0;
        if(prices.size()<2)
        {
            return profit;
        }
        else
        {
            int lost=prices[0];
            for(int i=1;i<prices.size();i++)
            {
                profit=max(profit,prices[i]-lost);
                lost=min(lost,prices[i]);
            }
        }
        return profit;
    }
};

 

买卖股票的最佳时机

标签:ice   pre   space   name   vector   price   ++   namespace   max   

原文地址:http://www.cnblogs.com/ZJJ644758437/p/6517373.html

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