An open API service indexing awesome lists of open source software.

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.

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!

```