Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meghaniankov/algorithms-practice
👩🏫 Practice and notes for basic algorithms & data structures
https://github.com/meghaniankov/algorithms-practice
Last synced: about 1 month ago
JSON representation
👩🏫 Practice and notes for basic algorithms & data structures
- Host: GitHub
- URL: https://github.com/meghaniankov/algorithms-practice
- Owner: meghaniankov
- Created: 2020-03-26T14:39:37.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-30T11:19:44.000Z (over 4 years ago)
- Last Synced: 2024-10-30T02:37:57.874Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 157 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Basic Algorithms & Data Structures
Practice and notes for basic algorithms & data structures
### Sorting Algorithms
- [x] Merge Sort
- [x] Quick Sort
- [ ] Insertion Sort
- [x] Bubble Sort
- [x] Selection Sort### Search Algorithms
- [x] Binary Search### Graph Traversal
- [x] Breadth First Search (BFS)
- [x] Depth First Search (DFS)### Data Structures
- [x] Graphs
- [x] Trees
- [x] Binary Search Tree
- [x] Linked Lists
- [x] Hash Tables
- [ ] Stacks
- [x] Queues### MISC
- [x] Big O Notation
- [x] Recursion## System Design
- [x] Distributed Computing
- [x] Multi-Threading
- [x] Load-Balancing/Failover
- [x] Failure Modes
- [x] Concurrency
- [x] Eventual Consistency
- [x] Sharding