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

leetcode 121 买卖股票的最佳时机

时间:2021-05-24 13:09:51      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:pre   fit   思路   ++   简介   auto   turn   lan   tor   

简介

使用感觉类似动态规划的思路进行计算

code

class Solution {
public:
    int maxProfit(vector<int>& prices) {
        int inf = 1e9;
        int minPrice = inf;
        int maxProfit = 0;
        for(auto it :prices) {
            maxProfit = max(maxProfit, it - minPrice);
            minPrice = min(minPrice, it);
        }
        return maxProfit;
    }
};
class Solution {
    public int maxProfit(int[] prices) {
        int inf = 1000000000;
        int minPrice = inf, maxProfit = 0;
        for(int it : prices) {
            maxProfit = Math.max(maxProfit, it - minPrice);
            minPrice = Math.min(minPrice, it);
        }
        return maxProfit;
    }
}

leetcode 121 买卖股票的最佳时机

标签:pre   fit   思路   ++   简介   auto   turn   lan   tor   

原文地址:https://www.cnblogs.com/eat-too-much/p/14774630.html

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