Javatpoint Logo
Javatpoint Logo

Stock Buy and Sell Problem

Introduction to the Problem

You are given an array named prices, where the ith index stores the price of a stock on the ith day.

The problem involves determining the best times to buy and sell stocks to maximize profit.

This problem was asked in SDE Interviews by Amazon, Microsoft, DE Shaw, Paytm, Google, Walmart, and others.

Example 1

Example 2

The goal is to find the maximum possible profit that we can obtain by buying and selling the stock within this period.

However, there are a few constraints that need to be followed:

  • One Transaction per Day - We can either buy or sell a stock on a particular day.
  • One Stock at a Time - We can hold only one stock at a time. Before buying another stock, we must sell the current stock.

Problem - Find the Maximum Profit

In general, we will be asked to Find the Maximum Profit only. In this case, we can use a simple greedy approach.

  • Initialize the profit = 0.
  • Iterate through the prices list from i = 1 to last (n-1)
  • Check if the current price (prices[i]) is higher than the previous price (prices[i-1])
  • Profit = profit + current price (prices[i]) - previous price (prices[i-1])
  • Return the total profit earned after iterating through all prices.

Python Code:

Output:

Stock Buy and Sell Problem

C++ Code:

Output:

Stock Buy and Sell Problem

C Code:

Output:

Stock Buy and Sell Problem

Problem - Find the Best Day to Buy and Sell the Stock to Maximize the Profit.

This problem is trickier than finding the profit only. In this problem, we are asked to find the segments of days on which we can buy and sell the stock to generate maximum profit.

Considering the first example discussed above:

In this problem, we will return a list containing segments of days, [(0, 3), (4, 5)], on which we can buy and sell the stock.

This problem can be solved by determining the difference between local maximum and local minimum and summing up the profit.

Special Cases:

  • When the prices are stored in non-increasing order, profit will be zero.
  • When the prices remain the same for all day, profit will be zero

The algorithm can be summarized as follows:

  • Iterate the prices list from the start to the end.
  • Find the indices of local minimum and local maximum.
  • Store them as a pair. These pairs represent that the profit can be generated between these segments of days.
  • Repeat the process until we iterate through all prices.

Python Code:

Output:

Stock Buy and Sell Problem

Explanation:

In the above program, we iterate through all prices using a while loop. We first find the index of the local minimum and store it in the buy_on variable.

We then search for the local maximum, and if found, we store it in the sell_on variable.

We then store buy_on and sell_on in the segments_of_days list. After finding all the possible segments, we return the answer.

C++ Code:

Output:

Stock Buy and Sell Problem

C Code

Output:

Stock Buy and Sell Problem

Note - C code includes memory allocation and deallocation for the dynamic array of segments using realloc() and free() functions, respectively.

CONCLUSION:

The stock buy and sell coding problem is often solved using various algorithms such as brute force, dynamic programming, and greedy algorithms. The optimal solution depends on the specific requirements and constraints of the problem at hand.

The greedy approach is used to solve both variations.

In the first variation, we iterate through the prices and calculate the profit by taking the difference between the current and previous prices whenever the current price is higher.

In the second variation, we find segments of days where the stock should be bought and sold to generate maximum profit.

Overall, the stock buy and sell problem is a common algorithmic problem asked in interviews by major companies and can be efficiently solved using a greedy approach.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA