Skip to content

Files

Latest commit

d8af8a1 · May 14, 2020

History

History

algorithm

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

常见算法

递归、排序、二分查找

  • 轻松写出二叉树遍历、八皇后、背包问题、DFS 的递归代码
  • 熟练写出各种排序算法
  • 熟练写出二分查找及其变体代码

字符串匹配

  • 实现 BF 算法、看懂 RK 算法
  • BM、KMP、AC 自动机(初学者忽略)