Skip to content

A tail recursive fibonacci function, and its non-recursive counterpart (using an iteration construct).

Notifications You must be signed in to change notification settings

carissaallen/fibonacci

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

The Fibonacci Sequence

For anyone unfamiliar, this is where each member of a sequence is the sum of the previous two members.

Example: 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89.

This small project consists of a tail recursive fibonacci function, and its non-recursive counterpart (using an iteration construct). Written in C.

About

A tail recursive fibonacci function, and its non-recursive counterpart (using an iteration construct).

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages