/algorithms

A collection of algorithms implemented in c and python.

Primary LanguageCMIT LicenseMIT

Algorithms

A collection of algorithms implemented in c and python for educational purposes. This projects provides a playground in which to experiment and to explore the implementation of algorithms and the nuances of the language those algorithms are implemented in.

Contributing

  1. Clone the repository.
  git clone https://github.com/michaelreneer/algorithms.git
  cd "algorithms"
  1. Checkout a new branch.
  git checkout -b "feature"
  1. Hack!

  2. Run the tests.

  make test
  1. Fix lint warnings.
  make lint
  1. Format the changes.
  make format
  1. Commit and push the changes.
  git add --all
  git commit
  git push

Why C

  • Manual memory management
  • Pointers
  • Static type checking

Why Python

  • Readability
  • Simplicity
  • Dynamic type checking

License

Copyright (c) 2018 Michael Reneer. See LICENSE for details.