python中计算一个列表中连续相同的元素个数方法

时间:2022-08-26 23:31:46

最简单的例子:

?
1
2
a = [1,1,1,1,2,2,2,3,3,1,1,1,3]
# 问:计算a中最多有几个连续的1

很明显,答案是4

如果用代码实现,最先想到的就是itertools:

?
1
2
3
import itertools
a = [1,1,1,1,2,2,2,3,3,1,1,1,3]
print max([len(list(v)) for k,v in itertools.groupby(a)])

但是如果不想用itertools呢?

可以尝试以下的办法,效率还比itertools高一个数量级!

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import random
import time
import itertools
 
random.seed(0)
a = ['1' if random.random()>0.4 else ' ' for i in range(1000000)]
 
t = time.time()
print max([len(x) for x in ''.join(a).split()])
print time.time()-t
 
t = time.time()
print max([len(list(v)) for k,v in itertools.groupby(a)])
print time.time()-t
 
#####
# 27
# 0.050999879837
# 27
# 0.450000047684

以上这篇python中计算一个列表中连续相同的元素个数方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/sinat_27339001/article/details/79449767