0%

leetcode 121 Solution

代码解析

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.demo.s121;

/**
* 买卖股票的最佳时机
* 给定一个数组 prices ,它的第 i 个元素 prices[i] 表示一支给定股票第 i 天的价格。
*
* 你只能选择 某一天 买入这只股票,并选择在 未来的某一个不同的日子 卖出该股票。设计一个算法来计算你所能获取的最大利润。
*
* 返回你可以从这笔交易中获取的最大利润。如果你不能获取任何利润,返回 0
*
* 来源:力扣(LeetCode)
* 链接:https://leetcode.cn/problems/best-time-to-buy-and-sell-stock
* 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
*/
public class Solution {
public int maxProfit(int[] prices) {
//设置最小金额
int minBuy = Integer.MAX_VALUE;
//设置最大利润
int maxProfit = 0;
for(int i = 0; i< prices.length; i++) {
//买入的最小金额
minBuy = Math.min(minBuy, prices[i]);
//卖出的最大金额
maxProfit = Math.max(maxProfit, prices[i] - minBuy);
}
return maxProfit;
}
}