Leetcode | | 121. Best time to Buy and Sell Stock

Source: Internet
Author: User

Problem:

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.

Hide TagsArray Dynamic ProgrammingTest instructions: Given a stock price list, decide which day to buy which day to sell the most benefit, sell the time behind the buy

Thinking:

(1) In fact, it is to find the maximum difference between two elements of an array element, using the following number minus the previous number

(2) Typical DP idea, open an array of n size, record the difference of the position minus the smallest element in front,

Finally find the maximum value of the travel value array, time complexity O (N)

Code

Class Solution {public:    int Maxprofit (vector<int>& prices) {        int n=prices.size ();        if (n==0)            return 0;        Vector<int> f (n,0);        int minprice=prices[0];        for (int i=0;i<n;i++)        {            minprice=min (minprice,prices[i]);            F[i]=prices[i]-minprice;        }        int profit=f[0];        for (int j=0;j<n;j++)            Profit=max (Profit,f[j]);        return profit;}    ;


Leetcode | | 121. Best time to Buy and Sell Stock

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.