forked from trekhleb/javascript-algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
48 changes: 48 additions & 0 deletions
48
...ms/uncategorized/best-time-to-buy-sell-stocks/__tests__/dpBestTimeToBuySellStocks.test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import dpBestTimeToBuySellStocks from '../dpBestTimeToBuySellStocks'; | ||
|
||
describe('dpBestTimeToBuySellStocks', () => { | ||
it('should find the best time to buy and sell stocks', () => { | ||
let visit; | ||
|
||
expect(dpBestTimeToBuySellStocks([1, 5])).toEqual(4); | ||
|
||
visit = jest.fn(); | ||
expect(dpBestTimeToBuySellStocks([1], visit)).toEqual(0); | ||
expect(visit).toHaveBeenCalledTimes(1); | ||
|
||
visit = jest.fn(); | ||
expect(dpBestTimeToBuySellStocks([1, 5], visit)).toEqual(4); | ||
expect(visit).toHaveBeenCalledTimes(2); | ||
|
||
visit = jest.fn(); | ||
expect(dpBestTimeToBuySellStocks([5, 1], visit)).toEqual(0); | ||
expect(visit).toHaveBeenCalledTimes(2); | ||
|
||
visit = jest.fn(); | ||
expect(dpBestTimeToBuySellStocks([1, 5, 10], visit)).toEqual(9); | ||
expect(visit).toHaveBeenCalledTimes(3); | ||
|
||
visit = jest.fn(); | ||
expect(dpBestTimeToBuySellStocks([10, 1, 5, 20, 15, 21], visit)).toEqual(25); | ||
expect(visit).toHaveBeenCalledTimes(6); | ||
|
||
visit = jest.fn(); | ||
expect(dpBestTimeToBuySellStocks([7, 1, 5, 3, 6, 4], visit)).toEqual(7); | ||
expect(visit).toHaveBeenCalledTimes(6); | ||
|
||
visit = jest.fn(); | ||
expect(dpBestTimeToBuySellStocks([1, 2, 3, 4, 5], visit)).toEqual(4); | ||
expect(visit).toHaveBeenCalledTimes(5); | ||
|
||
visit = jest.fn(); | ||
expect(dpBestTimeToBuySellStocks([7, 6, 4, 3, 1], visit)).toEqual(0); | ||
expect(visit).toHaveBeenCalledTimes(5); | ||
|
||
visit = jest.fn(); | ||
expect(dpBestTimeToBuySellStocks( | ||
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20], | ||
visit, | ||
)).toEqual(19); | ||
expect(visit).toHaveBeenCalledTimes(20); | ||
}); | ||
}); |
25 changes: 25 additions & 0 deletions
25
src/algorithms/uncategorized/best-time-to-buy-sell-stocks/dpBestTimeToBuySellStocks.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/** | ||
* Finds the maximum profit from selling and buying the stocks. | ||
* DYNAMIC PROGRAMMING APPROACH. | ||
* | ||
* @param {number[]} prices - Array of stock prices, i.e. [7, 6, 4, 3, 1] | ||
* @param {function(): void} visit - Visiting callback to calculate the number of iterations. | ||
* @return {number} - The maximum profit | ||
*/ | ||
const dpBestTimeToBuySellStocks = (prices, visit = () => {}) => { | ||
visit(); | ||
let lastBuy = -prices[0]; | ||
let lastSold = 0; | ||
|
||
for (let day = 1; day < prices.length; day += 1) { | ||
visit(); | ||
const curBuy = Math.max(lastBuy, lastSold - prices[day]); | ||
const curSold = Math.max(lastSold, lastBuy + prices[day]); | ||
lastBuy = curBuy; | ||
lastSold = curSold; | ||
} | ||
|
||
return lastSold; | ||
}; | ||
|
||
export default dpBestTimeToBuySellStocks; |