best time to buy and sell stock ii

Best Time to Buy and Sell Stock II

Say you have an array for which the ith element is the price of a given stock on day i.

Design an algorithm to find the maximum profit. You may complete as many transactions as you like (ie, buy one and sell one share of the stock multiple times). However, you may not engage in multiple transactions at the same time (ie, you must sell the stock before you buy again).

代码一(9 ms):

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