Leetcode--best time to Buy and Sell Stock II

Source: Internet
Author: User

Question:

Say you has an array for which the i-th element is 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).

Analysis:

Title Description: An array of integers is given, and the first element represents the stock price of day I. Design an algorithm to get the maximum profit, unlike the first version, the deal allows multiple transactions, but must be guaranteed to sell before buying the stock.

Idea: Start thinking whether to use the idea of dynamic planning, and later found that the topic is to divide the original array into a small crest trough, and each crest and trough the difference between the value can be used as a profit.

Answer:

 Public classSolution { Public intMaxprofit (int[] prices) {        if(Prices.length = = 0 | | prices.length = = 1)                return0; intProfit = 0;  for(intI=1; i<prices.length; i++) {                intdiff = prices[i]-prices[i-1]; if(diff > 0) {Profit+=diff; }        }        returnprofit; }}

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