码迷,mamicode.com
首页 > 编程语言 > 详细

选择排序的python实现

时间:2019-10-20 09:18:21      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:print   code   sort   for   ret   count   选择   python   pre   

def sort(arr): count = len(arr) for i in range(count): max = arr[i] for j in range(count-i): if max < arr[i+j]: max, arr[i+j] = arr[i+j], max arr[i] = max return arr l = [5, 2, 7, 8, 6, 1, 4, 9, 10, 1, 2, 3, 4] print(sort(l))

选择排序的python实现

标签:print   code   sort   for   ret   count   选择   python   pre   

原文地址:https://blog.51cto.com/870084/2443899

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!