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
7 changed files
with
58 additions
and
36 deletions.
There are no files selected for viewing
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
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
23 changes: 0 additions & 23 deletions
23
src/algorithms/math/fibonacci/__test__/fibonacciClosedForm.test.js
This file was deleted.
Oops, something went wrong.
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
31 changes: 31 additions & 0 deletions
31
src/algorithms/math/fibonacci/__test__/fibonacciNthClosedForm.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,31 @@ | ||
import fibonacciNthClosedForm from '../fibonacciNthClosedForm'; | ||
|
||
describe('fibonacciClosedForm', () => { | ||
it('should throw an error when trying to calculate fibonacci for not allowed positions', () => { | ||
const calculateFibonacciForNotAllowedPosition = () => { | ||
fibonacciNthClosedForm(76); | ||
}; | ||
|
||
expect(calculateFibonacciForNotAllowedPosition).toThrow(); | ||
}); | ||
|
||
it('should calculate fibonacci correctly', () => { | ||
expect(fibonacciNthClosedForm(1)).toBe(1); | ||
expect(fibonacciNthClosedForm(2)).toBe(1); | ||
expect(fibonacciNthClosedForm(3)).toBe(2); | ||
expect(fibonacciNthClosedForm(4)).toBe(3); | ||
expect(fibonacciNthClosedForm(5)).toBe(5); | ||
expect(fibonacciNthClosedForm(6)).toBe(8); | ||
expect(fibonacciNthClosedForm(7)).toBe(13); | ||
expect(fibonacciNthClosedForm(8)).toBe(21); | ||
expect(fibonacciNthClosedForm(20)).toBe(6765); | ||
expect(fibonacciNthClosedForm(30)).toBe(832040); | ||
expect(fibonacciNthClosedForm(50)).toBe(12586269025); | ||
expect(fibonacciNthClosedForm(70)).toBe(190392490709135); | ||
expect(fibonacciNthClosedForm(71)).toBe(308061521170129); | ||
expect(fibonacciNthClosedForm(72)).toBe(498454011879264); | ||
expect(fibonacciNthClosedForm(73)).toBe(806515533049393); | ||
expect(fibonacciNthClosedForm(74)).toBe(1304969544928657); | ||
expect(fibonacciNthClosedForm(75)).toBe(2111485077978050); | ||
}); | ||
}); |
This file was deleted.
Oops, something went wrong.
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,23 @@ | ||
/** | ||
* Calculate fibonacci number at specific position using closed form function (Binet's formula). | ||
* @see: https://en.wikipedia.org/wiki/Fibonacci_number#Closed-form_expression | ||
* | ||
* @param {number} position - Position number of fibonacci sequence (must be number from 1 to 75). | ||
* @return {number} | ||
*/ | ||
export default function fibonacciClosedForm(position) { | ||
const topMaxValidPosition = 75; | ||
|
||
// Check that position is valid. | ||
if (position < 1 || position > topMaxValidPosition) { | ||
throw new Error(`Can't handle position smaller than 1 or greater than ${topMaxValidPosition}`); | ||
} | ||
|
||
// Calculate √5 to re-use it in further formulas. | ||
const sqrt5 = Math.sqrt(5); | ||
// Calculate φ constant (≈ 1.61803). | ||
const phi = (1 + sqrt5) / 2; | ||
|
||
// Calculate fibonacci number using Binet's formula. | ||
return Math.floor((phi ** position) / sqrt5 + 0.5); | ||
} |