Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bert0324/leetcode-vscode
a leetcode repo base on vscode-leetcode: https://github.com/jdneo/vscode-leetcode
https://github.com/bert0324/leetcode-vscode
Last synced: 10 days ago
JSON representation
a leetcode repo base on vscode-leetcode: https://github.com/jdneo/vscode-leetcode
- Host: GitHub
- URL: https://github.com/bert0324/leetcode-vscode
- Owner: Bert0324
- Created: 2019-09-30T06:15:24.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-24T07:20:57.000Z (over 4 years ago)
- Last Synced: 2024-11-08T20:50:16.384Z (2 months ago)
- Language: Rust
- Size: 201 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Algorithm + Rust + JS, following CLRS
## Data Structure
### Binary Tree
1. Traverse ( DFS + BFS )
2. Balance
3. extension: binary search tree, avl tree, RB tree.### Union-Find
### Hash Table
## Method
### Greedy
### Dynamic Programming
### Divide-and-Conquer Method
3 steps:
1. the meaning of each element
2. the relationship between elements
3. initial situation## Design
### LRU cache
## Graph
1. Adjacency List
2. Adjacency Matrix
3. Minimum Spanning Tree
4. shortest paths: Floyd–Warshall algorithm## Graphics
### DDA