https://github.com/edson-a-soares/algorithms
Another collection of algorithms.
https://github.com/edson-a-soares/algorithms
algorithm-analysis algorithm-library algorithms algorithms-collection algorithms-cpp algorithms-implemented algorithms-modern-cpp
Last synced: 4 months ago
JSON representation
Another collection of algorithms.
- Host: GitHub
- URL: https://github.com/edson-a-soares/algorithms
- Owner: edson-a-soares
- License: apache-2.0
- Created: 2018-04-05T22:49:23.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-27T23:07:31.000Z (over 7 years ago)
- Last Synced: 2025-02-22T23:13:59.367Z (9 months ago)
- Topics: algorithm-analysis, algorithm-library, algorithms, algorithms-collection, algorithms-cpp, algorithms-implemented, algorithms-modern-cpp
- Language: C++
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](LICENSE.md)
[](https://travis-ci.org/edson-a-soares/algorithms)
## Introduction
Samples of [algorithms](https://en.wikipedia.org/wiki/Algorithm) implemented in modern C++.
### Mathematical
* [Karatsuba algorithm for fast multiplication](Karatsuba)
### Sorting
* [Insertion Sort](InsertionSort)
### Standards and Style
This code does not follow any specific **Coding Style Guidelines or Standard**.
But, it mixes different styles in a way that I could say it has been influenced by:
* [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html),
* [PPP Style Guide](http://www.stroustrup.com/Programming/PPP-style-rev3.pdf)
* [Applied Informatics C++ Coding Style Guide](https://www.appinf.com/download/CppCodingStyleGuide.pdf)
### Useful links
* [Google Test](https://github.com/google/googletest/blob/master/googletest/docs/Primer.md)
* [Doxygen](http://www.stack.nl/~dimitri/doxygen/manual/index.html)
### References
* **Roughgarden, Tim**, [Algorithms Illuminated: Part 1: The Basics](https://www.amazon.com/Algorithms-Illuminated-Part-1-Basics/dp/0999282905/ref=sr_1_1)
* **Laakmann McDowell, Gayle**, [Cracking the Coding Interview: 189 Programming Questions and Solutions](https://www.amazon.com/Cracking-Coding-Interview-Programming-Questions/dp/0984782850/ref=sr_1_1)