Computes N^th Fibonacci number given as input argument. Uses custom build arbitrary integers library to perform additions and other operations.
More...
#include <cinttypes>
#include <ctime>
#include <iostream>
#include "./large_number.h"
Computes N^th Fibonacci number given as input argument. Uses custom build arbitrary integers library to perform additions and other operations.
Took 0.608246 seconds to compute 50,000^th Fibonacci number that contains 10450 digits!
- Author
- Krishna Vedala
- See also
- fibonacci.cpp, fibonacci_fast.cpp, string_fibonacci.cpp
◆ fib()
Compute fibonacci numbers using the relation
\[f(n)=f(n-1)+f(n-2)\]
and returns the result as a large_number type.
Definition: large_number.h:24
◆ main()
| int main |
( |
int |
argc, |
|
|
char * |
argv[] |
|
) |
| |
50 double time_taken =
static_cast<double>(end_time - start_time) /
51 static_cast<double>(CLOCKS_PER_SEC);
62 "387896845438832563370191630832590531208212771464624510616059721489"
63 "555013904403709701082291646221066947929345285888297381348310200895"
64 "498294036143015691147893836421656394410691021450563413370655865623"
65 "825465670071252592990385493381392883637834751890876297071203333705"
66 "292310769300851809384980180384781399674888176555465378829164426891"
67 "298038461377896902150229308247566634622492307188332480328037503913"
68 "035290330450584270114763524227021093463769910400671417488329842289"
69 "149127310405432875329804427367682297724498774987455569190770388063"
70 "704683279481135897373999311010621930814901857081539785437919530561"
71 "751076105307568878376603366735544525884488624161921055345749367589"
72 "784902798823435102359984466393485325641195222185956306047536464547"
73 "076033090242080638258492915645287629157575914234380914230291749108"
74 "898415520985443248659407979357131684169286803954530954538869811466"
75 "508206686289742063932343848846524098874239587380197699382031717420"
76 "893226546887936400263079778005875912967138963421425257911687275560"
77 "0360311370547754724604639987588046985178408674382863125"))
78 std::cout <<
"Test for " << N <<
"^th Fibonacci number passed!"
81 std::cerr <<
"Test for " <<
N <<
"^th Fibonacci number failed!"
constexpr uint32_t N
A struct to represent sparse table for min() as their invariant function, for the given array A....
Definition: sparse_table.cpp:47
large_number fib(uint64_t n)
Definition: fibonacci_large.cpp:24
uint64_t result(uint64_t n)
Definition: fibonacci_sum.cpp:76