摘要: import mathclass sort: def selectSort(self, L): size = len(L) for i in range(0, size): max = L[i] index = i ... 阅读全文
posted @ 2014-08-23 21:41 bitgirl_coder 阅读(203) 评论(0) 推荐(0) 编辑