VOOZH about

URL: https://www.geeksforgeeks.org/javascript/javascript-program-for-stock-buy-sell-to-maximize-profit/

⇱ Javascript Program For Stock Buy Sell To Maximize Profit - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Javascript Program For Stock Buy Sell To Maximize Profit

Last Updated : 23 Jul, 2025

The cost of a stock on each day is given in an array, find the max profit that you can make by buying and selling in those days. For example, if the given array is {100, 180, 260, 310, 40, 535, 695}, the maximum profit can earned by buying on day 0, selling on day 3. Again buy on day 4 and sell on day 6. If the given array of prices is sorted in decreasing order, then profit cannot be earned at all.

Naive approach:

A simple approach is to try buying the stocks and selling them on every single day when profitable and keep updating the maximum profit so far.

Below is the implementation of the above approach:


Output
865

Complexity Analysis:

  • Time Complexity: O(N2)
  • Auxiliary Space: O(1)

Efficient approach:

If we are allowed to buy and sell only once, then we can use following algorithm. Maximum difference between two elements. Here we are allowed to buy and sell multiple times. 
Following is the algorithm for this problem.  

  1. Find the local minima and store it as starting index. If not exists, return.
  2. Find the local maxima. and store it as an ending index. If we reach the end, set the end as the ending index.
  3. Update the solution (Increment count of buy-sell pairs)
  4. Repeat the above steps if the end is not reached.

Output
Buy on day: 0
 Sell on day: 3
Buy on day: 4
 Sell on day: 6

Complexity Analysis:

  • Time Complexity: The outer loop runs till I become n-1. The inner two loops increment value of I in every iteration. So overall time complexity is O(n)
  • Space Complexity: O(1) since using constant variables

Please refer complete article on Stock Buy Sell to Maximize Profit for more details!

Comment