https://github.com/0xff-dev/introductiontoalgorithms
algorithm, datastructure
https://github.com/0xff-dev/introductiontoalgorithms
algorithm challenge-programming datastructures-algorithms go leetcode
Last synced: 2 months ago
JSON representation
algorithm, datastructure
- Host: GitHub
- URL: https://github.com/0xff-dev/introductiontoalgorithms
- Owner: 0xff-dev
- Created: 2020-05-14T17:08:14.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2025-04-18T01:36:04.000Z (2 months ago)
- Last Synced: 2025-04-18T14:58:45.259Z (2 months ago)
- Topics: algorithm, challenge-programming, datastructures-algorithms, go, leetcode
- Language: Go
- Homepage:
- Size: 2.78 MB
- Stars: 10
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# introductionToAlgorithms
### 复习计划
1. 完成基本的数据结构
- [x] 链表
- [x] 栈
- [x] 队列
- [x] 二叉树,二叉搜索树,红黑树, 平衡树) 红黑树, 前缀树
- [x] 堆,图2. 基本算法
- [x] 排序算法(堆排序,快排,归并,冒泡)
- [x] 朴素匹配,Rabin-Karp算法(节省m的计算时间), kmp字符串匹配算法
- [x] 图算法(最小生成树,最短路径, 深度搜索,广度搜索)
- [x] 动态规划(需要多尝试一些场景,遇见更多的转移方程)
- [x] 并查集
- [x] lru,lfu