美文网首页
122. Best Time to Buy and Sell S

122. Best Time to Buy and Sell S

作者: 衣介书生 | 来源:发表于2018-04-07 21:24 被阅读3次

题目分析

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

这道题目只要把所有的相邻的正差价相加返回即可。

代码

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

相关文章

网友评论

      本文标题:122. Best Time to Buy and Sell S

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