题目
给定一个数组 prices ,它的第 i 个元素 prices[i] 表示一支给定股票第 i 天的价格。
你只能选择 某一天 买入这只股票,并选择在 未来的某一个不同的日子 卖出该股票。设计一个算法来计算你所能获取的最大利润。
返回你可以从这笔交易中获取的最大利润。如果你不能获取任何利润,返回 0 。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock
示例
代码
package com.vleus.algorithm.dynamic_programming;
/**
* 股票交易最大时机
* @author vleus
* @date 2021年06月17日 22:07
*/
public class BestTimeToBuyAndSellStock {
//方法一: 暴力法
public int maxProfit1(int[] prices) {
int maxProfit = 0;
//遍历所有可能的买入卖出情况
for (int i = 0; i < prices.length - 1; i++) {
for (int j = i; j < prices.length; j++) {
int currProfit = prices[j] - prices[i];
maxProfit = Math.max(maxProfit, currProfit);
}
}
return maxProfit;
}
//方法二:动态规划
public static int maxProfit(int[] prices) {
//定义状态: 保存到目前为止的最小价格(买入点)
int minPrice = Integer.MAX_VALUE;
//定义状态:保存最大利润
int maxProfit = 0;
//遍历数组元素,不停的以当前价格进行比较
for (int i = 0; i < prices.length; i++) {
minPrice = Math.min(minPrice, prices[i]);
maxProfit = Math.max(maxProfit, prices[i] - minPrice);
}
return maxProfit;
}
public static void main(String[] args) {
int[] prices = new int[]{7,1,5,3,6,4};
maxProfit(prices);
}
}