题目如下:
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).
分析如下:
见这里
我的代码:
399ms
public class Solution {
public int maxProfit(int[] prices) {
int sum = 0;
for (int i = 1; i < prices.length; ++i) {
if (prices[i] > prices[i - 1]) {
sum += prices[i] - prices[i - 1];
}
}
return sum;
}
}

本文介绍了一种无限次买卖股票以获取最大利润的算法。通过遍历股价数组并仅在股价上升时进行买卖,实现最大化收益。
167

被折叠的 条评论
为什么被折叠?



