我正在努力优化 Python 代码。目标是获取一个整数列表并计算并输出列表中有多少对。一对被认为是 2 个数字,差异为K
(2
在这种情况下) 例如:
k = 2
list = [1, 5, 3, 4, 2]
这里的对将是(1,3), (5,3), (2,4)
答案是:3
我想提高代码效率,当前版本需要 8 秒或更长时间。
cProfile
告诉我这for number in sorted_array:
是唯一需要花费所有时间的线路。但我似乎无法弄清楚如何优化for
循环。
有没有人有任何经验或建议?太感谢了。
编码:
#generate random numbers
import bisect
import random
n_integers = random.sample(xrange(1, 29999), 29998)
####cProfile
import cProfile
pr = cProfile.Profile()
pr.enable()
#the difference between numbers we are looking for
k = 2
sorted_array = []
pairs_counter = 0
#insert N integers in array in sorted fashion and typecast
for number in n_integers:
bisect.insort_left(sorted_array, number)
#iterate over the array and calculate (number + K)
for number in sorted_array:
the_pair = number + k
#check if the number+K is in the array
if the_pair in sorted_array:
pairs_counter += 1
print pairs_counter
#Close cProfile
pr.disable()
pr.print_stats(sort = 'time')
c简介:
30075 function calls in 7.995 seconds
Ordered by: internal time
ncalls tottime percall cumtime percall filename:lineno(function)
1 7.834 7.834 7.834 7.834 <ipython-input-5-19d578e3c582>:19(<module>)
29998 0.143 0.000 0.143 0.000 {_bisect.insort_left}
1 0.016 0.016 0.159 0.159 <ipython-input-5-19d578e3c582>:15(<module>)