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

Best Time to Buy and Sell Stock

时间:2021-04-05 11:41:37      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:http   and   ice   最大   bsp   cpp   inf   for   png   

技术图片

 

 暴力求解法,直接遍历求最大值

class Solution {
public:
    int maxProfit(vector<int>& prices) 
    {
        int maxprofit=0;
        for(int i=0;i<prices.size();i++)
        {
            for(int j=i+1;j<prices.size();j++)
            {
                maxprofit=max(maxprofit,prices[j]-prices[i]);
            }
        }
        return maxprofit;
    }
};

  但是这种方法时间复杂度过高

所以我们只需要一次遍历

寻找出最低点,在寻出与最低点距离最远的最大值

class Solution {
public:
    int maxProfit(vector<int>& prices) 
    {
        int minpoint=prices[0];
        int maxprofit=0;
        for(int price:prices)
        {
            maxprofit=max(maxprofit,price-minpoint);
            minpoint=min(minpoint,price);
        }
        return maxprofit;
    }
};

  

Best Time to Buy and Sell Stock

标签:http   and   ice   最大   bsp   cpp   inf   for   png   

原文地址:https://www.cnblogs.com/zhangdalao/p/14610067.html

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