牛骨文教育服务平台(让学习变的简单)
博文笔记

Leetcode 121. Best Time to Buy and Sell Stock

创建时间:2018-10-19 投稿人: 浏览次数:939
版权声明:博客文章都是作者辛苦整理的,转载请注明出处,谢谢! https://blog.csdn.net/Quincuntial/article/details/83188771

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

Best Time to Buy and Sell Stock

2. Solution

  • Version 1
class Solution {
public:
    int maxProfit(vector<int>& prices) {
        int max_profit = 0;
        for(int i = 0; i < prices.size(); i++) {
            for(int j = i + 1; j < prices.size(); j++) {
                int profit = prices[j] - prices[i];
                if(profit > max_profit) {
                    max_profit = profit;
                }
            }
        }
        return max_profit;
    }
};
  • Version 2
class Solution {
public:
    int maxProfit(vector<int>& prices) {
        int max = 0;
        int min = INT_MAX;
        vector<int> current_max(prices.size());
        vector<int> current_min(prices.size());
        int max_profit = 0;
        int size = prices.size();
        for(int i = 0; i < size; i++) {
            if(prices[i] < min) {
                min = prices[i];
            }
            current_min[i] = min;
        }
        for(int i = size - 1; i >= 0; i--) {
            if(prices[i] > max) {
                max = prices[i];
            }
            current_max[i] = max;
        }
        for(int i = 0; i < size; i++) {
            int profit = current_max[i] - current_min[i];
            if(profit > max_profit) {
                max_profit = profit;
            }
        }
        return max_profit;
    }
};
  • Version 3
class Solution {
public:
    int maxProfit(vector<int>& prices) {
        int min = INT_MAX;
        int max_profit = 0;
        for(int i = 0; i < prices.size(); i++) {
            if(prices[i] < min) {
                min = prices[i];
            }
            else if(prices[i] - min > max_profit) {
                max_profit = prices[i] - min;
            }
        }
        return max_profit;
    }
};

Reference

  1. https://leetcode.com/problems/best-time-to-buy-and-sell-stock/description/
声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。