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

面试题63. 股票的最大利润

时间:2020-05-09 20:50:03      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:pre   image   最大利润   面试   price   com   strong   面试题   col   

题目:

技术图片

 

 

解答:

技术图片

 

 

 1 class Solution {
 2 public:
 3     int maxProfit(vector<int>& prices) 
 4     {
 5         int cost = INT_MAX;
 6         int profit = 0;
 7         for (int price: prices)
 8         {
 9             cost = std::min(cost, price);
10             profit = std::max(profit, price - cost);
11         }
12 
13         return profit;
14 
15     }
16 };

 

面试题63. 股票的最大利润

标签:pre   image   最大利润   面试   price   com   strong   面试题   col   

原文地址:https://www.cnblogs.com/ocpc/p/12859851.html

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