C_Algorithms 2.0.0
Documentation
|
Go to the source code of this file.
Functions | |
long | DynFib (int n) |
DynFib is a function that is calculating the fibonacci number dynamic. It's a lot faster as the recursive Version especally with bigger numbers. | |
void | DynamicFib (int number) |
Prints the return value of the called function RecFib. | |
void DynamicFib | ( | int | number | ) |
Prints the return value of the called function RecFib.
number |
Definition at line 31 of file dynamicFib.c.
References DynFib().
Referenced by FunctionCall().
long DynFib | ( | int | n | ) |
DynFib is a function that is calculating the fibonacci number dynamic. It's a lot faster as the recursive Version especally with bigger numbers.
n | input as an int |
Definition at line 12 of file dynamicFib.c.
Referenced by DynamicFib().