选择排序

2021-02-08 09:15

阅读:591

标签:二层   pytho   最小   html   排序   元素   选择   https   ref   

https://www.cnblogs.com/xxtalhr/p/10787340.html

def selection_sort(arr):
    """选择排序"""
    # 第一层for表示循环选择的遍数
    for i in range(len(arr) - 1):
        # 将起始元素设为最小元素
        min_index = i
        # 第二层for表示最小元素和后面的元素逐个比较
        for j in range(i + 1, len(arr)):
            if arr[j] 

  

选择排序

标签:二层   pytho   最小   html   排序   元素   选择   https   ref   

原文地址:https://www.cnblogs.com/come202011/p/12772149.html


评论


亲,登录后才可以留言!