[python] 冒泡排序

def bubble_sort(lst): l = len(lst); # 計算列表長度 for i in range(0, l - 1): # 趟循環 state = True # 設置狀態爲True for j in range(0, l - i - 1): # 每趟循環中挑選最大值 if lst[i] > lst[i +
相關文章
相關標籤/搜索