内置sorted的简单实现

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了内置sorted的简单实现相关的知识,希望对你有一定的参考价值。

今天给小伙们出了一个题,排序下面的字典,可以指定key或者value进行升序、降序排序:

 dt = {
     ‘Jack‘: 89,
     ‘Rose‘: 78,
     ‘Tom‘: 99
 }

分析:
1.字典暂时不能直接排序
2.可以借鉴元组排序的方式
代码如下:

print(sorted(list(dt.items()), key= lambda x:x[1], reverse=False))

不过有些小伙伴,对这个代码不是很理解,于是简单的实现sorted排序,这里不考虑复杂度和性能,仅仅是为了演示下sorted:

dt = {
    ‘Jack‘: 89,
    ‘Rose‘: 78,
    ‘Tom‘: 99
}

def bubble_sort(dt:list, key, reverse=False):
    for x in range(len(dt) - 1):
        for y in range(len(dt)-1-x):
            if not reverse:
                if key(dt[y]) > key(dt[y+1]):
                    dt[y], dt[y+1] = dt[y+1],dt[y]
            else:
                if key(dt[y]) < key(dt[y+1]):
                    dt[y], dt[y+1] = dt[y+1],dt[y]

def key(x):
    # 这里用 value 排序
    return x[1]

dt2 = list(dt.items())
bubble_sort(dt2, key, reverse=False) #源地修改
print(sorted(list(dt.items()), key= lambda x:x[1], reverse=False))
print(dt2)

以上是关于内置sorted的简单实现的主要内容,如果未能解决你的问题,请参考以下文章

python [代码片段]一些有趣的代码#sort

代码片段 - Golang 实现集合操作

代码片段 - Golang 实现简单的 Web 服务器

python sortsorted高级排序技巧

#yyds干货盘点#golag 用sort.slice包实现对象list排序

GitLab