Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/liuzihe02/dsa
Personal notes for neetcode.io courses
https://github.com/liuzihe02/dsa
algorithms data-structures leetcode
Last synced: 2 months ago
JSON representation
Personal notes for neetcode.io courses
- Host: GitHub
- URL: https://github.com/liuzihe02/dsa
- Owner: liuzihe02
- License: mit
- Created: 2024-07-23T17:18:54.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-10-16T00:45:42.000Z (3 months ago)
- Last Synced: 2024-10-17T13:27:25.144Z (3 months ago)
- Topics: algorithms, data-structures, leetcode
- Language: Jupyter Notebook
- Homepage:
- Size: 28.3 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Data Structures and Algorithims
Personal notes for data structures and algorithims. Initial notes based off neetcode.io courses.Notes are stored as Jupyter Notebooks
*Prioritization Tier List*
| S | A | B | C | D | E | F |
|---|---|---|---|---|---|---|
| DFS | BFS | Two Pointers | Linked List | Merge Sort | Quick Select | Bit Manipulation |
| Backtracking | Binary Search | DP + Top-down Memoization | Prefix Sum | Trie | Bucket Sort | Kruskal's |
| | Heap | Sliding Window | Intervals | Topological Sort | Union Find | Prim's |
| | | Stacks | | Dijkstra's | | Floyd's |
| | | Object-Oriented Design (e.g., Design an LRU cache) | | Binary Search Tree | | |
| | | Hash Tables | | Greedy | | |
| | | | | DP + Bottom-up Tabulation | | |