【python】list排序 (内置sort函数)

最近总是见到:res_list.sort(lambda x,y:cmp(len(x),len(y)))  【目的,对res_list=['a','ba','bdc','a']按照每个字符串的长度对列表进行排序,最长的字符串排序后会位于列表的最后一个】,最终查到相关资料,在此进行分享:

参考链接:

python的reduce,lambda,和排序 https://www.2cto.com/kf/201401/275105.html

所有例子均来源于参考链接,


python中:

list排序有两种方法,一是使用list的成员函数,二是使用内建函数sorted。

list的成员函数有3个参数list.sort(cmp=None, key=None, reverse=False)

三个参数的说明如下:

cmp:cmp specifies a custom comparison function of two arguments (iterable elements) which should return a negative, zero or positive number depending on whether the first argument is considered smaller than, equal to, or larger than the second argument: 
"cmp=lambda x,y: cmp(x.lower(), y.lower())" 
key:key specifies a function of one argument that is used to extract a comparison key from each list element: "key=str.lower"
reverse:reverse is a boolean value. If set to True, then the list elements are sorted as if each comparison were reversed.In general, the key and reverse conversion processes are much faster than specifying an 
equivalent cmp function. This is because cmp is called multiple times for each list element while key and reverse touch each element only once.

cmp和key都是函数,

key是一个变量的函数,输入为list中的一个element,输出为一个可比较的element

cmp是两个边路的函数,输入为list重两个element,输出为这两个element的大小关系(大于0,小于0,等于0)

key与cmp往往不会同时使用

下面是使用例子:

cmp和key都是函数,

key是一个变量的函数,输入为list中的一个element,输出为一个可比较的element

cmp是两个边路的函数,输入为list重两个element,输出为这两个element的大小关系(大于0,小于0,等于0)

key与cmp往往不会同时使用

下面是使用例子:

实例1:
>>>L = [2,3,1,4]
>>>L.sort()#或者sorted(L)【内建函数sorted】
>>>L
>>>[1,2,3,4]

实例2:
>>>L = [2,3,1,4]
>>>L.sort(reverse=True)
>>>L
>>>[4,3,2,1]
实例3:
>>>L = [('b',2),('a',1),('c',3),('d',4)]
>>>L.sort(cmp=lambda x,y:cmp(x[1],y[1]))
>>>L
>>>[('a', 1), ('b', 2), ('c', 3), ('d', 4)]
实例4:
>>>L = [('b',2),('a',1),('c',3),('d',4)]
>>>L.sort(key=lambda x:x[1])
>>>L
>>>[('a', 1), ('b', 2), ('c', 3), ('d', 4)]
实例5:
>>>L = [('b',2),('a',1),('c',3),('d',4)]
>>>import operator
>>>L.sort(key=operator.itemgetter(1))
>>>L
>>>[('a', 1), ('b', 2), ('c', 3), ('d', 4)]
实例6:(DSU方法:Decorate-Sort-Undercorate)
>>>L = [('b',2),('a',1),('c',3),('d',4)]
>>>A = [(x[1],i,x) for i,x in enumerate(L)] #i can confirm the stable sort
>>>A.sort()
>>>L = [s[2] for s in A]
>>>L
>>>[('a', 1), ('b', 2), ('c', 3), ('d', 4)]
以上给出了6中对List排序的方法,其中实例3.4.5.6能起到对以List item中的某一项
为比较关键字进行排序.
效率比较:
cmp < DSU < key
通过实验比较,方法3比方法6要慢,方法6比方法4要慢,方法4和方法5基本相当
多关键字比较排序:
实例7:
>>>L = [('d',2),('a',4),('b',3),('c',2)]
>>> L.sort(key=lambda x:x[1])
>>> L
>>>[('d', 2), ('c', 2), ('b', 3), ('a', 4)]
我们看到,此时排序过的L是仅仅按照第二个关键字来排的,如果我们想用第二个关键字
排过序后再用第一个关键字进行排序呢?有两种方法
实例8:
>>> L = [('d',2),('a',4),('b',3),('c',2)]
>>> L.sort(key=lambda x:(x[1],x[0]))
>>> L
>>>[('c', 2), ('d', 2), ('b', 3), ('a', 4)]
实例9:
>>> L = [('d',2),('a',4),('b',3),('c',2)]
>>> L.sort(key=operator.itemgetter(1,0))
>>> L
>>>[('c', 2), ('d', 2), ('b', 3), ('a', 4)]
为什么实例8能够工作呢?原因在于tuple是的比较从左到右比较的,比较完第一个,如果
相等,比较第二个


注意:python2中以上例子均可以正常运行,但在python3中,cmp已取消。

python2中的cmp()函数作用:

cmp( x, y )  #如果 x < y 返回 -1, 如果 x == y 返回 0, 如果 x > y 返回 1。

Python3中已经不能使用cmp()函数了,被如下五个函数替代(参考链接:http://blog.csdn.net/Artprog/article/details/52197779):

import operator     #首先要导入运算符模块
operator.gt(1,2)      #意思是greater than(大于)                       输出:False
operator.ge(1,2)      #意思是greater and equal(大于等于)              输出:False
operator.eq(1,2)      #意思是equal(等于)                              输出:False
operator.le(1,2)      #意思是less and equal(小于等于)                 输出:True
operator.lt(1,2)      #意思是less than(小于)                          输出:True
 
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6





  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值