只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2019-12-26 09:28 沐知 阅读(6) 评论(0) 推荐(0) 编辑
摘要: import syssys.setrecursionlimit(1000000) # 设定递归#### 冒泡排序 (************************)### 时间复杂度:O(n^2)def Bubble_sort(li): for i in range(len(li)-1): for j in range(len(li)-1-i): i... 阅读全文
posted @ 2019-12-26 01:01 沐知 阅读(96) 评论(0) 推荐(0) 编辑