码迷,mamicode.com
首页 > 编程语言 > 详细

【数组】122. 买卖股票的最佳时机 II

时间:2020-05-04 17:32:01      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:inf   vector   图片   turn   http   src   cto   数组   时机   

题目:

技术图片

 

 

解答:

技术图片

 

 

 1 class Solution {
 2 public:
 3     int maxProfit(vector<int>& prices) 
 4     {
 5         int profit = 0;
 6         for (int i = 1; i < prices.size(); i++) 
 7         {
 8             int tmp = prices[i] - prices[i - 1];
 9             if (tmp > 0) 
10             {
11                 profit += tmp;
12             }
13         }
14         return profit;  
15     }
16 };

 

【数组】122. 买卖股票的最佳时机 II

标签:inf   vector   图片   turn   http   src   cto   数组   时机   

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

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