...asc)(不能调用python内置的sort方法或sorted函数)?

发布网友 发布时间:2022-04-24 13:29

我来回答

1个回答

热心网友 时间:2022-04-18 22:58

   

def selection_sort(a, asc):
    b = []
    while len(a) > 0:
        b.append(a[0])
        for i in a:
            if (b[-1] < i and not asc) or (b[-1] > i and asc):
                b[-1] = i
        a.remove(b[-1])
    return b

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com