121. 买卖股票的最佳时机
Posted yuhong1103
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了121. 买卖股票的最佳时机相关的知识,希望对你有一定的参考价值。
1 class Solution 2 { 3 public: 4 int maxProfit(vector<int>& prices) 5 { 6 if(prices.empty()) return 0; 7 int n = prices.size(); 8 int buy = prices[0]; 9 int res = 0; 10 for(int i = 1;i < n;i ++) 11 { 12 res = max(res,prices[i] - buy); 13 if(buy > prices[i]) buy = prices[i]; 14 } 15 return res; 16 } 17 };
以上是关于121. 买卖股票的最佳时机的主要内容,如果未能解决你的问题,请参考以下文章
菜鸟系列 Golang 实战 Leetcode —— 买卖股票的最佳时机系列(121. 买卖股票的最佳时机买卖股票的最佳时机 II