GithubHelp home page GithubHelp logo

fibonacci-ex's Introduction

Fibonacci computator in Elixir

A simple module to perform Fibonacci computation in the Elixir language.

Motivation

I am not a great fan of mathematic, but the sequence of Fibonacci is a good work horse to stress computation via recursive logic with any programming language.

No tail-recursion

This version does not attempt to perform tail-recursion, which indeed is optimized by some (BEAM) virtual machines (for an elegant solution look here). Instead it relies on multiprocessing and memoization by using the Agent and Task abstractions in the Elixir base library.

Cache VS Uncache

Computation without cache starts struggling when reaching numbers near 30 (MacBook Pro i7 2.2Ghz 8GB). Memoized version is a blaze, but trades speed for memory consumption.

API

The use of the library is pretty straightforward:

1..10 |> Enum.map &Fibonacci.of/1

For the cached version remember to initialize the Agent:

Fibonacci.cache_start
Fibonacci.of 10000

fibonacci-ex's People

Contributors

costajob avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.