买卖股票的最佳时机含手续费
作者:互联网
给定一个整数数组 prices,其中第 i 个元素代表了第 i 天的股票价格 ;整数 fee 代表了交易股票的手续费用。
你可以无限次地完成交易,但是你每笔交易都需要付手续费。如果你已经购买了一个股票,在卖出它之前你就不能再继续购买股票了。
返回获得利润的最大值。
注意:这里的一笔交易指买入持有并卖出股票的整个过程,每笔交易你只需要为支付一次手续费。
class Solution {
public int maxProfit(int[] prices, int fee) {
if (prices == null || prices.length == 0) {
return 0;
}
int hold = -prices[0] - fee;
int notHold = 0;
for (int i = 1; i < prices.length; ++i) {
int tmp = hold;
hold = Math.max(hold, notHold - prices[i] - fee);
notHold = Math.max(notHold, tmp + prices[i]);
}
return notHold;
}
}
标签:notHold,买卖,int,fee,最佳时机,prices,hold,手续费 来源: https://www.cnblogs.com/tianyiya/p/15406706.html