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

https://github.com/synzen/data-structures-algorithms

A collection of data structures and algorithms for academic purposes.
https://github.com/synzen/data-structures-algorithms

Last synced: about 1 month ago
JSON representation

A collection of data structures and algorithms for academic purposes.

Awesome Lists containing this project

README

          

# Data Structures & Algorithms

For academic purposes.
## Data Structures
* Linked List
* Doubly Linked List
* Max Heap (with Array)
* Min Heap (with Array)
* Binary Search Tree (with Array)
* B-tree
* Red Black Tree
* Graphs

## Algorithms
### Sorting
* Bubble Sort
* Insertion Sort
* Quick Sort
* Merge Sort
* Heap Sort
### Searching
* Binary Search
* Depth First Search (DFS)
* Breadth First Search (BFS)
### Traversals
* Inorder
* Preorder
* Postorder