C++ LeeCode 买卖股票的最佳时机

Posted 小狐狸FM

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ LeeCode 买卖股票的最佳时机相关的知识,希望对你有一定的参考价值。

一、题目

原题链接

在这里插入图片描述
在这里插入图片描述

二、代码

在这里插入图片描述

class Solution {
public:
    int maxProfit(vector<int>& prices) {//动态规划
        int profit = 0;//最大利润
        int enter = prices[0];//当前股票的进价
        for(int i=1;i<prices.size();i++)
        {
            if(enter>prices[i]){//当前进价更低时,修改进价,保留之前的最大利润值
                enter = prices[i];
            }else if(profit<prices[i] - enter){//当前卖出获取的利润较高时,修改利润值,保留之前的最小进价
                profit = prices[i] - enter;
            }
        }
        return profit;
    }
};

以上是关于C++ LeeCode 买卖股票的最佳时机的主要内容,如果未能解决你的问题,请参考以下文章

Leecode刷题之旅-C语言/python-121买卖股票的最佳时机

leecode 309. 最佳买卖股票时机含冷冻期

leecode第一百二十一题(买卖股票的最佳时机II)

LeetCode121. 买卖股票的最佳时机(C++)

买卖股票的最佳时机||

C++买卖股票的最佳时机