Best Time to Buy and Sell Stock in python

问题链接

https://leetcode.com/explore/interview/card/top-interview-questions-easy/97/dynamic-programming/572/

解题思路

思路一:两次遍历寻找前后两个数的最大差值,发现超时,时间复杂度O(n^2)
思路二:遍历一次,迭代更新最小值,并计算最小值与最新遍历点的差值,最大的即为最大交易

代码(思路二)

class Solution(object):
    def maxProfit(self, prices):
        """
        :type prices: List[int]
        :rtype: int
        """
        maxprofit = 0
        if len(prices) == 0:
            return maxprofit
        low = prices[0]
        for i in range(1, len(prices)):
            if prices[i] < low:
                low = prices[i]
            else:
                profit = prices[i] - low
                if maxprofit < profit:
                    maxprofit = profit
        return maxprofit
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容