LeetCode之旅(39)

来源:互联网 发布:手机淘宝装修用dw 编辑:程序博客网 时间:2024/06/07 00:02

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 dayi.

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).


股票允许多次买卖,因此就把每天的利润算出来再相加即可。


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



0 0