zoukankan      html  css  js  c++  java
  • [Leetcode] Best time to buy and sell stock 买卖股票的最佳时机

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

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

    题意:至多做一次买、卖,求利润的最大值。

    思路:这个不是简单的求出数组的最大值和最小值,然后两者相减即可,因为,卖股票必须在买股票之前,也就是,较小值要在前。所以思路为:维护两个变量,一个是目前为止的最小值,一个是目前为止的利润。遍历数组,若当前值比最小值小,则更新最小值,若比最小值大则,计算其与最小值之间的差值是否大于当前最大利润,是,更新利润。代码如下:

     1 class Solution {
     2 public:
     3     int maxProfit(vector<int> &prices) 
     4     {
     5         int minVal=prices[0];
     6         int profit=0;
     7 
     8         for(int i=0;i<prices.size();++i)
     9         {
    10             minVal=min(prices[i],minVal);
    11             profit=max(profit,prices[i]-minVal);
    12         }
    13         return profit;
    14     }
    15 };
  • 相关阅读:
    ultraedit 窗口布局
    Oracle之Char VarChar VarChar2
    Python之pickle
    Python之xpath
    Python常用数据结构之heapq模块
    Python实现排序算法之快速排序
    Python常用数据结构之collections模块
    New York is 3 hours ahead of California
    leetcode978
    leetcode979
  • 原文地址:https://www.cnblogs.com/love-yh/p/7095010.html
Copyright © 2011-2022 走看看