Maximum Subarray Problem: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 13: Line 13:
Assuming we have access to stock prices of a company for a number of days, and the price does not change during a day, determine what would have been the best day to buy and the best day to sell one unit of stock to make the maximum profit, for the entire interval we have data for. For example, if we maintain the stock prices in an array, for 4 days (0-3) as follows {10, 8, 12, 11} then we would have made the biggest profit of 4 by buying on day 1 at 8 and selling on day 2 at 12.
Assuming we have access to stock prices of a company for a number of days, and the price does not change during a day, determine what would have been the best day to buy and the best day to sell one unit of stock to make the maximum profit, for the entire interval we have data for. For example, if we maintain the stock prices in an array, for 4 days (0-3) as follows {10, 8, 12, 11} then we would have made the biggest profit of 4 by buying on day 1 at 8 and selling on day 2 at 12.


The problem has an obvious O(n<sup>2</sup>) brute force approach solution, an O(
The problem has an obvious O(n<sup>2</sup>) brute force approach solution, an O(?) divide-and-conquer solution and an O(n) iterative solution.
 
=O(n<sup>2</sup>) Brute Force Approach=
 
=Divide-and-Conquer=
 
=O(n)=


=Playground=
=Playground=


{{External|https://github.com/NovaOrdis/playground/tree/master/data-structures-and-algorithms/maximum-subarray-problem}}
{{External|https://github.com/NovaOrdis/playground/tree/master/data-structures-and-algorithms/maximum-subarray-problem}}

Revision as of 22:07, 9 August 2018

External

Internal

Overview

The maximum subarray problem is useful to solve the following problem:

Assuming we have access to stock prices of a company for a number of days, and the price does not change during a day, determine what would have been the best day to buy and the best day to sell one unit of stock to make the maximum profit, for the entire interval we have data for. For example, if we maintain the stock prices in an array, for 4 days (0-3) as follows {10, 8, 12, 11} then we would have made the biggest profit of 4 by buying on day 1 at 8 and selling on day 2 at 12.

The problem has an obvious O(n2) brute force approach solution, an O(?) divide-and-conquer solution and an O(n) iterative solution.

O(n2) Brute Force Approach

Divide-and-Conquer

O(n)

Playground

https://github.com/NovaOrdis/playground/tree/master/data-structures-and-algorithms/maximum-subarray-problem