An open API service indexing awesome lists of open source software.

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

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