zoukankan      html  css  js  c++  java
  • [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 }
  • 相关阅读:
    MySQL优化
    数据库之事务
    浮动与定位的区别
    CSS-画三角
    CSS(中)篇
    CSS(前)篇
    html篇
    定位真机运行能用但是打包成apk就不能用的解决方法
    定位与权限
    activity与fragment之间的传递数据
  • 原文地址:https://www.cnblogs.com/liuliu5151/p/9808257.html
Copyright © 2011-2022 走看看