欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 新闻 > 焦点 > Day14买卖股票的最佳时机

Day14买卖股票的最佳时机

2024/11/8 17:04:19 来源:https://blog.csdn.net/weixin_54418006/article/details/143624717  浏览:    关键词:Day14买卖股票的最佳时机

给定一个数组 prices ,它的第 i 个元素 prices[i] 表示一支给定股票第 i 天的价格。
你只能选择 某一天 买入这只股票,并选择在 未来的某一个不同的日子 卖出该股票。设计一个算法来计算你所能获取的最大利润。
返回你可以从这笔交易中获取的最大利润。如果你不能获取任何利润,返回 0 。

在这里插入图片描述

暴力解会超时

class Solution {public int maxProfit(int[] prices) {int max = 0;for (int i = 0; i < prices.length; i++) {for (int j = i + 1; j < prices.length; j++) {if (prices[j] - prices[i] > max) {max = prices[j] - prices[i];}}}return max;}
}

在这里插入图片描述

class Solution {public int maxProfit(int[] prices) {int max = 0;int i = 0, j = 1;while (j < prices.length) {if (prices[j] > prices[i]) {max = Math.max(max, prices[j] - prices[i]);} else {i = j;}j++;}return max;}
}

复杂度分析:
时间复杂度:O(n),使用了一个while循环来遍历prices数组。
空间复杂度:O(1)。

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com