美文网首页
008.冒泡法排序

008.冒泡法排序

作者: 讲武德的年轻人 | 来源:发表于2020-12-08 10:23 被阅读0次
    lst = [2,5,3,7,1,6,4]
    for i in range(len(lst)):
        for j in range(len(lst)-1-i):
            if lst[j]>lst[j+1]:
                temp = lst[j+1]
                lst[j+1] = lst[j]
                lst[j] = temp
    print(lst)
    

    相关文章

      网友评论

          本文标题:008.冒泡法排序

          本文链接:https://www.haomeiwen.com/subject/ldgmtctx.html