leetcode(121-123)买股票的最佳时机

Posted erdanyang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode(121-123)买股票的最佳时机相关的知识,希望对你有一定的参考价值。

1、

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

 

以上是关于leetcode(121-123)买股票的最佳时机的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode-探索 | 买股票的最佳时机II

LeetCode ---- 买卖股票系列问题思路与题解

LeetCode ---- 买卖股票系列问题思路与题解

Leetcode 309 最佳买卖股票时机含冷冻期 (动态规划)

122. 买卖股票的最佳时机 II

leetcode122. Best Time to Buy and Sell Stock II 买卖股票的最佳时机 II(简单)