时间复杂度
Big O notation
大O描述的是算法的运行时间和输入数据之间的关系
O(1)常数复杂度
O(log n)对数复杂度
O(n)线性时间复杂度
O(n^2)平方
O(n^3)立方
O(2^n)指数
O(n!)阶乘
主定理
二分查找
空间复杂度
算法可视化
https://www.cs.usfca.edu/~galles/visualization/Algorithms.html
https://visualgo.net/en
https://algorithm-visualizer.org
算法学习网站
https://www.geeksforgeeks.org/search-insert-and-delete-in-an-unsorted-array/