6.00 Introduction to Computer Science and Programming Lec 8: Efficiency and Order of Growth
这个lec主要将复杂度的内容,这部分内容没有什么好总结的,不过里面那段Python代码比较有意思,就贴在这里吧importpylab,math
defshowGrowth(lower,upper):
log=[]
linear=[]
quadratic=[]
logLinear=[]
exponential=[]
forninrange(lower,upper+1):
log.append(ma