1. 算法(第四版)github-python
https://github.com/ChangeMyUsername/algorithms-sedgewick-python
2. github:scipy_sklearn_tutorial
https://github.com/amueller/scipy_2015_sklearn_tutorial
3. Google 开源自然语言解析器
https://github.com/tensorflow/models/tree/master/syntaxnet
4. LSTM模型学习
http://blog.csdn.net/shincling/article/details/49362161
http://blog.csdn.net/a635661820/article/details/45390671
5. 自然语言处理的科普文
http://python.jobbole.com/85094/
函数距离与几何距离
再也不想被这个坑了。。。
TodoList - sort
- 选择排序select:N^2/2次比较,N次交换
- 插入排序insert:最坏N^2/2次比较和交换,最好N-1次比较和0次交换
- 希尔排序shell:
- 归并排序merge:NlogN时间,N空间
- 快速排序quick:平均NlogN,最差每次partition都有一个是空,则为N^2
- 堆:k的父节点k/2,k的子节点2k和2k+1,高度math.floor(lgk)
TodoList - find
- 二分查找
- 二叉查找树