Leetcode122:best time to Buy and Sell Stock II

Source: Internet
Author: User

Say you had an array for which the ith element was the price of a given stock on day I.

Design an algorithm to find the maximum profit. You could complete as many transactions as (ie, buy one and sell one share of the stock multiple times). However, engage in multiple transactions for the same time (ie, you must sell the stock before you buy again).

Hide Tags Array Greedy

This can be said to be a relatively simple case of stock trading.
Starting from a point in time, as long as the next day's price is greater than the price of the day, a deal. This way to find out all the spreads these days and is the biggest benefit.
See Hide tags hints that this is actually a greedy idea, because just the local optimal solution is the global optimal solution, so you can use greedy algorithm to solve problems.
Runtime:10ms

class  solution {public : int  maxprofit (< Span class= "hljs-built_in" >vector  <int ;  & prices) {int  length=prices.size ();        int  result=0 ; if         (Length<2 )        return  result; for         (int  i=1 ; i<length;i++)        {Result+=max (Prices[i]-prices[i-1 ],0 );    } return  result; }};

Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

Leetcode122:best time to Buy and Sell Stock II

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.