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

https://github.com/tomas542/dsaa

Data Structures and Algorithms on Python, C, C++ and Rust
https://github.com/tomas542/dsaa

algorithms c cpp data-structures python rust

Last synced: 3 months ago
JSON representation

Data Structures and Algorithms on Python, C, C++ and Rust

Awesome Lists containing this project

README

          

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

---
# Hello friends 👋

## This is my git repo with Data structures and algorithms. Here you can find code in:
- Python
- C (WIP)
- C++ (WIP)
- Rust (WIP)

### :ledger: Sort (only Python for now)
In sort.ipynb you can find 10 sorting algorithms. Some of them have several implementations. You'll find:
1. Merge sort
2. Quick sort
3. Selection sort
4. Bubble sort
5. Insertion sort
6. Shell sort
7. Heap sort
8. Bucket sort
9. Stalin sort
10. Bogo sort

### :mag_right: Search (only Python for now)
In search.ipynb you can find 7 searching algorithms. Hash-based have several implementations. You'll find:
1. Linear search
2. Binary search
3. Binary search tree
4. Fibonacci search
5. Interpolation search
6. Bloom filter
7. Hash-based search

### :arrow_right: Graph.ipynb (only Python for now)
In graph.ipynb you can find 5 graph algorithms. You'll find:
1. Breadth First Search
2. Depth First Search
3. Levit
4. Dijkstra
5. Bellman-Ford