121. Buy and sell stocks best time to buy and Sell stock

Source: Internet
Author: User

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.

Subscribe to see which companies asked this question

Thinking: Dynamic planning
  
 
  1. public class Solution {
  2. public int MaxProfit(int[] prices) {
  3. if (prices.Length == 0)
  4. {
  5. return 0;
  6. }
  7. int low = prices[0];
  8. int max = 0;
  9. int length = prices.Length;
  10. for (int i = 0; i < length; i++)
  11. {
  12. if (prices[i] < low)
  13. {
  14. low = prices[i];
  15. }
  16. else if (prices[i] - low > max)
  17. {
  18. max = prices[i] - low;
  19. }
  20. }
  21. return max;
  22. }
  23. }



From for notes (Wiz)

121. Buy and sell stocks 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.