Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nikolasent/algorithm-collection
Personal collection of classical algorithms
https://github.com/nikolasent/algorithm-collection
algorithm algorithms cpp numerical-methods sorting-algorithms
Last synced: 19 days ago
JSON representation
Personal collection of classical algorithms
- Host: GitHub
- URL: https://github.com/nikolasent/algorithm-collection
- Owner: NikolasEnt
- Created: 2017-06-06T15:35:19.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-28T19:21:25.000Z (over 7 years ago)
- Last Synced: 2024-10-07T11:41:49.300Z (about 1 month ago)
- Topics: algorithm, algorithms, cpp, numerical-methods, sorting-algorithms
- Language: C++
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Algorithms
This repository is a personal collection of classical algorithms. It will be constantly supplemented. The collection can be used to recall algorithms for coding interview or for practice.
## Categories
* [Sorting](/sorting)
* Bubble sort
* Insertion sort
* Selection sort
* Shell sort
* Merge sort* [Mathematical algorithms](/math)
* Factorial
* Prime factorization
* Fibonacci numbers
* Euclid's GCD Algorithm* [Numerical methods](/numerical)
* Fixed-point iteration
* Newton method
* Secant method
* Tridiagonal matrix algorithm