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: 5 months 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 (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-24T07:20:57.000Z (about 5 years ago)
- Last Synced: 2025-01-02T02:14:56.821Z (6 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