leetcode:122. Best Time to Buy and Sell Stock II(java)解答

转载请注明出处:z_zhaojun的博客
原文地址
题目地址
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).

解答(Java):

public int maxProfit(int[] prices) {
        int maxPro = 0;
        int length = prices.length - 1;
        for (int i = 0; i < length; i++) {
            if (prices[i] < prices[i + 1]) {
                maxPro += prices[i + 1] - prices[i];
            }
        }
        return maxPro;
    }
原文地址:https://www.cnblogs.com/slgkaifa/p/7161928.html