solution.cpp 324 字节
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17


#include <vector>
using std::vector;

class Solution
{
public:
    int maxProfit(vector<int> &prices)
    {
        int profit = 0;
        for (auto i = prices.begin(); i != prices.end(); ++i)
            if (i + 1 != prices.end() && *(i + 1) > *i)
                profit += *(i + 1) - *i;
        return profit;
    }
};