欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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;
    }
};
相关标签: LeetCode