Best Time to Buy and Sell Stock II

来源:互联网 发布:药物合成工艺优化 编辑:程序博客网 时间:2024/05/25 05:35

一、问题描述

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

二、思路

采用贪心算法。求最大的收益,不论你交易几次,只要求出最大收益和即可。

三、代码

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


0 0
原创粉丝点击