1、在无序数列中查找某一个数(顺序查找) O(n)
2、插入排序、选择排序、冒泡排序 O(n^2)
3、快速排序 O(n*log(n))
4、二分查找 O(log(n))
学习资料:
https://github.com/sjsdfg/CS-Notes-PDF