"Leetcode" best time to Buy and Sell Stock

Source: Internet
Author: User

Test instructions

Say you had an array for which the ith element was 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.


Ideas:

can only buy and sell once, so to find a maximum difference of two days, but pay attention to the low that day is in front. So you can maintain a minimum and a maximum difference, and then go backward, if it is smaller than the minimum value is updated, if the difference between the minimum value is greater than the previous maximum difference, the maximum difference is updated.

Note that if you maintain the maximum and minimum values, and finally return a maximum-minimum number, it will be wrong oh!


Code: C + +:

Class Solution {public:    int maxprofit (vector<int> &prices) {int n = prices.size (); if (n <= 1) return 0;int Min_value = prices[0];int ans = 0;for (Vector<int>::iterator it = Prices.begin (); It! = Prices.end (); it++) {/* Update minimum * /if (*it < min_value) {min_value = *it;} /* Update max Difference */if (*it-min_value > Ans) {ans = *it-min_value;}} return ans;            };

Python:

Class solution:    # @param prices, a list of integer    # @return An integer    def maxprofit (self, prices):        if Le N (Prices) < 2:            return 0        min = prices[0]        Profit = 0 for        x in prices:            if x < min:                min = x
   if x-min > Profit:                Profit = x-min        return profit


"Leetcode" 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.