用Cython加速Python程序以及包装C程序简单测试
摘要:用Cython加速Python程序 我没有拼错,就是Cython,C+Python=Cython! 我们来看看Cython的威力,先运行下边的程序: import time def fib(n): if n==0: return 0 if n==1: return 1 return fib(n 1)
阅读全文
posted @ 2016-12-04 15:02
posted @ 2016-12-04 15:02