https://github.com/nitin42/algorithms-and-data-structures
Contains sorting, graph, divide & conquer, greedy and mathematical algorithms.
https://github.com/nitin42/algorithms-and-data-structures
Last synced: 3 months ago
JSON representation
Contains sorting, graph, divide & conquer, greedy and mathematical algorithms.
- Host: GitHub
- URL: https://github.com/nitin42/algorithms-and-data-structures
- Owner: nitin42
- Created: 2016-08-24T18:47:01.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-09-05T16:07:25.000Z (almost 9 years ago)
- Last Synced: 2025-01-12T23:11:25.354Z (5 months ago)
- Language: Python
- Size: 15.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Design-of-algorithms
Contains sorting, graph, divide & conquer, greedy and mathematical algorithms. All the algorithms are implemented in Python programming language with proper tests. **(Under progress)**.## Why algorithms and how they work?
```
def Algorithm(problem):
flag = False
while not flag or not fast_enough(running_time):
algorithm = devise_algorithm(problem)
correctness = check_correctness(algorithm)
running_time = check_running_time(algorithm)return algorithm
$ python
>>> import Algorithm
Error: Not a package. Just a description!```