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 };
  • 相关阅读:
    Using the @synchronized Directive
    What Are Threads?
    ios 线程同步
    CAAnimation 动画支撑系统
    UIView 动画 依赖与 CALayer的证据
    动画的定义
    Core Animation1-简介
    繁的是表象,简的是本质
    完全自定义动画
    线程安全与可重入
  • 原文地址:https://www.cnblogs.com/love-yh/p/7095010.html
Copyright © 2011-2022 走看看