摘要: #冒泡lst = [13,124,42543,3,6,3,63,637,5,747,758,58,231,23,414,53,64,6]for a in range(len(lst)): i = 0 while i < len(lst)-1: if lst[i] > lst[i + 1]: lst[ 阅读全文
posted @ 2016-07-20 16:48 small宙斯 阅读(115) 评论(0) 推荐(0)