# 买卖股票的最佳时机
- 买卖股票的最佳时机
来源:力扣(LeetCode) 链接 (opens new window):https://leetcode.cn/problems/best-time-to-buy-and-sell-stock/ 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
# 问题
定一个数组 prices ,它的第 i 个元素 prices[i] 表示一支给定股票第 i 天的价格。
你只能选择 某一天 买入这只股票,并选择在 未来的某一个不同的日子 卖出该股票。设计一个算法来计算你所能获取的最大利润。
返回你可以从这笔交易中获取的最大利润。如果你不能获取任何利润,返回 0
输入:[7,1,5,3,6,4]
输出:5
解释:在第 2 天(股票价格 = 1)的时候买入,在第 5 天(股票价格 = 6)的时候卖出,最大利润 = 6-1 = 5 。
注意利润不能是 7-1 = 6, 因为卖出价格需要大于买入价格;同时,你不能在买入前卖出股票。
# 思路
方法1 记录最小价格,低买高卖
var maxProfit2 = function (prices) {
let minprice = Number.MAX_VALUE;
let maxprofit = 0;
for (let i = 0; i < prices.length; i++) {
if (prices[i] < minprice) {
minprice = prices[i];
} else if (prices[i] - minprice > maxprofit) {
maxprofit = prices[i] - minprice;
}
}
return maxprofit;
};
方法2
var maxProfit = function (prices) {
let max = 0;
let tempMax = 0;
for (let i = 0; i < prices.length; i++) {
const pick = prices[i];
for (let index = i; index < prices.length; index++) {
let cur = prices[index];
console.log("pick", pick);
console.log("cur", cur);
if (cur > pick) {
tempMax = Math.max(tempMax, cur - pick);
}
console.log("tempMax", tempMax);
}
max = Math.max(max, tempMax);
}
return max;
};