美文网首页ACM题库~
LeetCode 122. Best Time to Buy a

LeetCode 122. Best Time to Buy a

作者: 关玮琳linSir | 来源:发表于2017-10-16 17:13 被阅读8次

    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代码:

    class Solution {
        public int maxProfit(int[] prices) {
            int maxBenefit = 0;
            for (int i = 0; i < prices.length - 1; i++) {
                if (prices[i + 1] - prices[i] > 0) {
                    maxBenefit += prices[i + 1] - prices[i];
                }
            }
            return maxBenefit;
    
        }
    }
    

    相关文章

      网友评论

        本文标题:LeetCode 122. Best Time to Buy a

        本文链接:https://www.haomeiwen.com/subject/trcluxtx.html