• [leetcode]121. Best Time to Buy and Sell Stock 最佳炒股时机


    Say you have an array for which the ith element is the price of a given stock on day i.

    If you were only permitted to complete at most one transaction (i.e., buy one and sell one share of the stock), design an algorithm to find the maximum profit.

    Note that you cannot sell a stock before you buy one.

    Example 1:

    Input: [7,1,5,3,6,4]
    Output: 5
    Explanation: Buy on day 2 (price = 1) and sell on day 5 (price = 6), profit = 6-1 = 5.
                 Not 7-1 = 6, as selling price needs to be larger than buying price.

    题目

    给定一系列股价,允许买卖各一次。求最大收益。

    思路

    扫一遍input array,对于每个price: 更新当前minPrice, 更新当前maxProfit 

    代码

     1 class Solution {
     2     public int maxProfit(int[] prices) {
     3         if(prices.length < 2) return 0;
     4         int maxProfit = 0;
     5         int minPrice = prices[0];
     6         for(int price : prices){
     7             minPrice = Math.min(minPrice, price);
     8             maxProfit = Math.max(maxProfit, price - minPrice);
     9         }
    10         return maxProfit;   
    11     }
    12 }
  • 相关阅读:
    jquery 插件扩展2
    jquery 插件扩展
    call apply bind
    bom object
    js oop 封装
    js oop 继承
    js页面之间传参2
    js弹出新窗口的6中方法
    display Tag
    js中extends方法
  • 原文地址:https://www.cnblogs.com/liuliu5151/p/9808257.html
Copyright © 2020-2023  润新知