LeetCode/com/zerroi/leetcode/ThreeFour/MaxProfitⅡ.java

26 lines
708 B
Java
Raw Normal View History

package com.zerroi.leetcode.ThreeFour;
public class MaxProfit {
}
/*
给你一个整数数组 prices 其中 prices[i] 表示某支股票第 i 天的价格
在每一天你可以决定是否购买和/或出售股票你在任何时候 最多 只能持有 一股 股票你也可以先购买然后在 同一天 出售
返回 你能获得的 最大 利润
*/
class SolutionSecond {
public int maxProfit(int[] prices) {
int profit = 0;
int n = prices[0];
for (int i = 0; i < prices.length - 1; i++) {
if (prices[i + 1] > prices[i]) {
profit += prices[i + 1] - prices[i];
}
}
return profit;
}
}