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.
- Host: GitHub
- URL: https://github.com/synzen/data-structures-algorithms
- Owner: synzen
- Created: 2019-07-01T01:38:54.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-13T23:04:54.000Z (almost 7 years ago)
- Last Synced: 2025-02-25T08:52:49.911Z (over 1 year ago)
- Language: C++
- Homepage:
- Size: 49.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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