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: 8 months 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 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-28T19:21:25.000Z (over 8 years ago)
- Last Synced: 2025-04-01T21:04:13.507Z (8 months ago)
- Topics: algorithm, algorithms, cpp, numerical-methods, sorting-algorithms
- Language: C++
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- 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