面试题63. 股票的最大利润
Posted ocpc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面试题63. 股票的最大利润相关的知识,希望对你有一定的参考价值。
题目:
解答:
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. 股票的最大利润的主要内容,如果未能解决你的问题,请参考以下文章