Python3之冒泡排序

List = [99, 11, 33, 88, 22, 44, 55, 77, 66]


def bubble_sort(L):
    length = len(L)
    for i in range(0, length):
        for j in range(i + 1, length):
            if L[i] > L[j]:
                L[i], L[j] = L[j], L[i]
    return L


print(bubble_sort(List))
这个和Java的冒泡排序很像,只是Java的数值交换需要第三个变量,Python就方便的不能太多!
    原文作者:Quincy379
    原文地址: https://blog.csdn.net/qq_33733970/article/details/79178090
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞