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

121 Best Time to Buy and Sell Stock 买卖股票的最佳时机

时间:2018-04-05 14:30:41      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:最大利润   .com   and   ==   public   des   int   ems   max   

假设你有一个数组,其中第 i 个元素是一支给定股票第 i 天的价格。
如果您只能完成最多一笔交易(即买入和卖出一股股票),则设计一个算法来找到最大的利润。
示例 1:
输入: [7, 1, 5, 3, 6, 4]
输出: 5
最大利润 = 6-1 = 5(不是 7-1 = 6, 因为卖出价格需要大于买入价格)
示例 2:
输入: [7, 6, 4, 3, 1]
输出: 0
在这种情况下, 没有交易完成, 即最大利润为 0。
详见:https://leetcode.com/problems/best-time-to-buy-and-sell-stock/description/

class Solution {
public:
    int maxProfit(vector<int>& prices) {
        int size=prices.size();
        if(size==0||prices.empty())
        {
            return 0;
        }
        int mn=prices[0];
        int profit=0;
        for(int i=1;i<size;++i)
        {
            if(mn>prices[i])
            {
                mn=prices[i];
            }
            if(prices[i]-mn>profit)
            {
                profit=prices[i]-mn;
            }
        }
        return profit;
    }
};

 参考:https://www.cnblogs.com/grandyang/p/4280131.html

121 Best Time to Buy and Sell Stock 买卖股票的最佳时机

标签:最大利润   .com   and   ==   public   des   int   ems   max   

原文地址:https://www.cnblogs.com/xidian2014/p/8722098.html

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