LeetCode(初级算法)数组篇--买卖股票的最佳时机 II c++
程序员文章站
2024-03-23 10:57:16
...
class Solution {
public:
int maxProfit(vector<int>& prices) {
if(prices.size() == 0) return 0;
int earn = 0;
for(int i=0;i<prices.size()-1;i++)
{
if(prices[i+1]>prices[i]) earn+=prices[i+1]-prices[i];
}
return earn;
}
};
上一篇: db2服务器端授权 db2
下一篇: 系统回调介绍
推荐阅读
-
Leetcode 探索初级算法 数组 2. 买卖股票的最佳时机 II
-
Leetcode 初级算法:数组2.买卖股票的最佳时机 II
-
初刷LeetCode,初级算法,2.买卖股票的最佳时机 II
-
LeetCode(初级算法)数组篇--买卖股票的最佳时机 II c++
-
LeetCode-探索-初级算法-数组-2. 买卖股票的最佳时机 II(个人做题记录,不是习题讲解)
-
LeetCode初级算法——数组(2)买卖股票的最佳时机 II
-
Leetcode刷题日记02——初级算法数组篇122买卖股票的最佳时机 II
-
【leetcode初级算法】买卖股票的最佳时机 II
-
LeetCode 初级算法 买卖股票的最佳时机 II
-
Leetcode 数组问题2:买卖股票的最佳时机 II