Leetcode 121. best time to Buy and Sell Stock array

Source: Internet
Author: User

121. Best time to Buy and Sell Stock

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

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

Example 1:

Input: [7, 1, 5, 3, 6, 4]output:5max. difference = 6-1 = 5 (Not 7-1 = 6, as selling-price needs-be-larger than buying price)


Example 2:

Input: [7, 6, 4, 3, 1]output:0in this case, no transaction was done, i.e. Max Profit = 0.

Main topic:

In an array, the maximum value is obtained by subtracting the preceding element from the previous element and returning the maximum value.

Ideas:

You can use a double loop to come out, but the efficiency is too low. did not pass.

Take the minimum value before the current value, subtract the previous minimum value from the current one to get a temporary maximum value, traverse the entire array, and find the maximum value.

Class solution {public:    int maxprofit (vector<int>& prices )  {        if (Prices.size ()  <= 1)              return 0;         int max = 0;        int curMin =  Prices[0];                for ( Int i = 1;i<prices.size (); i++)         {             if (Prices[i] - curmin > max )                 max =  prices[i] - curmin;            if ( prices[i] &Lt; curmin)                  curMin = prices[i];        }         return max;    }};

2016-08-12 08:43:51

This article is from the "Do Your best" blog, so be sure to keep this source http://qiaopeng688.blog.51cto.com/3572484/1837145

Leetcode 121. best time to Buy and Sell Stock array

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.