鱼C论坛

 找回密码
 立即注册
查看: 955|回复: 4

[已解决]selection sort

[复制链接]
发表于 2021-12-21 23:24:41 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
各位大佬們 我想問一下python 要怎麼寫出能自由輸入數字的 selection sort
不能使用 sort 的情況下
最佳答案
2021-12-21 23:55:17
def SORT(*args, reverse = False):
        arr = list(args)
        res = arr[:]
        if(not reverse):
                for n in range(len(res)):
                        t = min(res[n:])
                        i = res.index(t)
                        if res[n] != t:
                                res[n] -= res[i]
                                res[i] += res[n]
                                res[n] = res[i] - res[n]
        else:
                for n in range(len(res)):
                        t = max(res[n:])
                        i = res.index(t)
                        if res[n] != t:
                                res[n] -= res[i]
                                res[i] += res[n]
                                res[n] = res[i] - res[n]
        return res

A = SORT(13, 5, 78, 9, 55)
B = SORT(13, 5, 78, 9, 55, reverse = True)

print(*A)
print(*B)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-12-21 23:25:52 From FishC Mobile | 显示全部楼层
不明白
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-12-21 23:34:32 | 显示全部楼层

就是選擇排序而已 只是要能夠自己輸入數字
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-12-21 23:55:17 From FishC Mobile | 显示全部楼层    本楼为最佳答案   
def SORT(*args, reverse = False):
        arr = list(args)
        res = arr[:]
        if(not reverse):
                for n in range(len(res)):
                        t = min(res[n:])
                        i = res.index(t)
                        if res[n] != t:
                                res[n] -= res[i]
                                res[i] += res[n]
                                res[n] = res[i] - res[n]
        else:
                for n in range(len(res)):
                        t = max(res[n:])
                        i = res.index(t)
                        if res[n] != t:
                                res[n] -= res[i]
                                res[i] += res[n]
                                res[n] = res[i] - res[n]
        return res

A = SORT(13, 5, 78, 9, 55)
B = SORT(13, 5, 78, 9, 55, reverse = True)

print(*A)
print(*B)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-12-22 00:08:51 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 16:15

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表