Python中的各种排序问题

在编写Python时,经常需要进行排序操作,简单的list排序还是很容易的,碰到复杂的就没办法,只能去查了,现在把编程过程中遇到的所有排序问题列下来,欢迎大家提供更加简洁,高效的排序方法,也欢迎
大家给出自己在Python遇到的排序问题.

Python排序根本依赖于两个内建的函数:

  • list.sort() 对list成员进行排序,不返回副本
  • sorted(list) 对list成员进行排序,返回副本

注:以下使用sorted(list)进行演示

基本的排序

列表(list)

按列表元素大小排序

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#数值类型
>>> sorted([1,6,3,2,5,7,4])
[1, 2, 3, 4, 5, 6, 7]

#字符类型
>>> sorted(['a','d','e','b','f','c'])
['a', 'b', 'c', 'd', 'e', 'f']

#字符串类型
>>> sorted(['a','ad','ada','ad1','abe','b','f','c'])
['a', 'abe', 'ad', 'ad1', 'ada', 'b', 'c', 'f']

#字符串中包含大小写
>>> sorted(['a','ad','ada','A','ad1','abe','Abe','b','f','c'])
['A', 'Abe', 'a', 'abe', 'ad', 'ad1', 'ada', 'b', 'c', 'f']

#小写字母优先
>>> sorted(['a','ad','ada','A','ad1','abe','Abe','b','f','c'],key=str.lower)
['a', 'A', 'abe', 'Abe', 'ad', 'ad1', 'ada', 'b', 'c', 'f']

规则解释:

  1. 如果list内的元素是字符/字符串,默认优先将大写字母排前面,其次再按照规则2进行排序;通过参数key=str.lower控制其从小字母优先排.
  2. 如果list内的元素是字符/字符串,将依次按照该字符/字符串的==ASCCII值 ==进行排序
  3. 虽然列表内的元素的类型可以不一样,但是sotred(list)==不支持 ==列表中既有数字又有字符的排序

按列表元素的属性

1
2
3
#按列表元素的长度进行排序
sorted(['a','ad','ada','A','ad1','abe','Abe','b','f','c'],key=lambda str:len(str))
['a', 'A', 'b', 'f', 'c', 'ad', 'ada', 'ad1', 'abe', 'Abe']

注:
lambda为匿名函数,没有函数的具体名称,使用匿名函数是为了使代码更为精简.实际上lambda str:len(str)等价于:

1
2
def Getlenght(str):
return len(str)

字典(dictory)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#对字典进行排序
>>> sorted({1: 'D', 5: 'B', 2: 'B', 4: 'E', 3: 'A'})
[1, 2, 3, 4, 5]

#按照字典中的values的大小进行排序
>>> dict
{1: 'DE', 2: 'DDDB', 3: 'A', 4: 'QPOIE', 5: 'WWB'}
>>> dict.items()
dict_items([(1, 'DE'), (2, 'DDDB'), (3, 'A'), (4, 'QPOIE'), (5, 'WWB')])
>>> sorted(dict.items(),key=lambda value:value[1])
[(3, 'A'), (2, 'DDDB'), (1, 'DE'), (4, 'QPOIE'), (5, 'WWB')]

#按照字典中的values的长度进行排序
>>> sorted(dict.items(),key=lambda value:len(value[1]))
[(3, 'A'), (1, 'DE'), (5, 'WWB'), (2, 'DDDB'), (4, 'QPOIE')]

对字典进行排序,实际上是对字典keys组成的list进行排序,即sorted(dict)==sorted(sorted.values())

元组(tuple)排序

单个元组排序和列表的方法一样

1
2
3
4
5
6
7
#元组排序
>>> tup1=(1,5,3,4,2,7,6)
>>> sorted(tup1)
[1, 2, 3, 4, 5, 6, 7]
>>> tup2=('a','d','f','b','e','c')
>>> sorted(tup2)
['a', 'b', 'c', 'd', 'e', 'f']

元组列表

1
2
3
4
5
6
7
8
9
10
11
12
13
14
>>> tuplist=[('a',1),('c',4),('e',0),('d',2),('f',3)]
>>> student_tuples = [('john', 'A', 15),('jane', 'B', 12),('dave', 'B', 10),]
>>>
#直接对元组列表进行排序
>>> sorted(tuplist)
[('a', 1), ('c', 4), ('d', 2), ('e', 0), ('f', 3)]

#按照元组的第某个值进行排序
>>> sorted(tuplist,key=lambda tup:tup[1])
[('e', 0), ('a', 1), ('d', 2), ('f', 3), ('c', 4)]

#按照元组的第某个值进行排序
>>> sorted(student_tuples, key=lambda student: student[2])
[('dave', 'B', 10), ('jane', 'B', 12), ('john', 'A', 15)]

注:直接对元组列表进行排序是按照元组的第一个值进行排序

高级排序

使用Operator模块

1
2
3
4
5
6
7
8
9
>>> from operator import itemgetter, attrgetter

#一个排序关键字
>>> sorted(student_tuples, key=itemgetter(2))
[('dave', 'B', 10), ('jane', 'B', 12), ('john', 'A', 15)]

#两个排序关键字
>>> sorted(student_tuples, key=itemgetter(1,2))
[('john', 'A', 15), ('dave', 'B', 10), ('jane', 'B', 12)]

字符串的多关键字排序

基于上面的多关键字排序,可以对字符串做一些有趣的排序,平常我们对字符串进行排序时,可能带有数字,这时候排序只是像平常那样逐个字符串ASCCII值 #800023进行排序:

1
2
3
4
5
>>> list01=['dog1','cat3','bird7','swan4','penguin6','cattle5']

#字符串排序
>>> sorted(list01)
['bird7', 'cat3', 'cattle5', 'dog1', 'penguin6', 'swan4']

但是有时候我们需要按照字符串中的字母进行排序,这时候就需要将字符串中的数字切割出来,然后传入key参数给sorted.

1
2
3
4
5
6
7
8
9
10
11
12
#按照字符串的某个数字进行排序
>>> import re
>>> def sort_str(str):
if str:
try:
c=re.findall('\d+',str)[0]
except:
c=-1
return int(c)

>>> sorted(list01,key=sort_str)
['dog1', 'cat3', 'swan4', 'cattle5', 'penguin6', 'bird7']

如果字符串中类似这样的,而你只想对字符串的某些位置的数字进行排序,我们先来看看只针对字符串一个特定位置的排序.

[‘cb_cha0_amni0’,‘cb_cha0_amni2’,‘cb_cha1_amni1’,‘cb_cha0_amni3’]

使用上面的排序方法得到

1
2
3
>>> list02=['cb_cha0_amni0','cb_cha0_amni2','cb_cha1_amni1','cb_cha0_amni3']
>>> sorted(list02,key=sort_str)
['cb_cha0_amni0', 'cb_cha0_amni2', 'cb_cha0_amni3', 'cb_cha1_amni1']

上面的自定义提取数字的函数c=re.findall('\d+',str)[0]这一句决定了要对字符串的第几个数字进行排序,假设我要对上面字符数组的第二个值进行排序,重新定义一个提取数值的方法,每次调用返回字符串的第二个数字.

1
2
3
4
5
6
7
8
9
10
>>> def sort_str1(str):
if str:
try:
c=re.findall('\d+',str)[1]
except:
c=-1
return int(c)

>>> sorted(list02,key=sort_str1)
['cb_cha0_amni0', 'cb_cha1_amni1', 'cb_cha0_amni2', 'cb_cha0_amni3']

比较炸的是你的需求是:按照字符串中的多个字母排序(比如优先按照第一个字母排序,然后按照第二个字母排序)

一个想法是:把字符串解析为元组,然后使用itemgetter来完成多关键字排序.

1
2
3
4
5
6
7
8
9
10
11
12
#字符串已经被拆分为元组
>>> list03=[('cb_cha',0,'_amni',0),('cb_cha',1,'_amni',1),('cb_cha',0,'_amni',2),('cb_cha',0,'_amni',3)]

#对元祖进行多关键字排序
>>> listtmp=sorted(list03, key=itemgetter(1,3))
>>> listtmp
[('cb_cha', 0, '_amni', 0), ('cb_cha', 0, '_amni', 2), ('cb_cha', 0, '_amni', 3), ('cb_cha', 1, '_amni', 1)]

#将排序后的元组转成字符串
>>> list(map(lambda strtmp:''.join(map(str,strtmp)),listtmp))
['cb_cha0_amni0', 'cb_cha0_amni2', 'cb_cha0_amni3', 'cb_cha1_amni1']

注:这里用了匿名函数和多个map,这对处理大量的数据是的问题,会耗费很多时间.这种情况比较好的方法是使用excle进行排序,当然,你得手动先将数据分割成一列一列的.

EXCLE的自定义排序