【Python】选择正确的字符串累加姿势,速度可以提升数倍

引言

在通读谷歌的 Python 代码规范文档中,发现了有意思的有一段话:

Avoid using the + and += operators to accumulate a string within a loop. In some conditions, accumulating a string with addition can lead to quadratic rather than linear running time. Although common accumulations of this sort may be optimized on CPython, that is an implementation detail. The conditions under which an optimization applies are not easy to predict and may change. Instead, add each substring to a list and ''.join the list after the loop terminates, or write each substring to an io.StringIO buffer. These techniques consistently have amortized-linear run time complexity.

大意就是说,避免在循环中使用 ++= 运算符累积字符串。替代的是,先将字符串放到一个列表 list 中,然后使用 ''.join(list) 的方法来累加字符串。或者你也可以使用 io.StringIO 缓冲。

这是因为在循环中使用 ++= 运算符累积字符串的时间复杂度是 O(n2),而使用 ''.join(list) 的时间复杂度是 O(n)

方法

+/+=

>>> s = ''
>>> for i in ['a', 'b', 'c']:
...     s += i
... 
>>> s
'abc'

.join()

>>> s = ''.join(['a', 'b', 'c']) 
>>> s
'abc'

实验

这里设置一个实验对比 +=.join() 累加字符串耗时。

  • +=
import time
t1 = time.time()
s = ''
for i in [chr(i) for i in range(96, 123)]*1000000:
    s += i
t2 = time.time()
print(f'Time-consuming: {t2-t1}')
  • .join()
import time
t1 = time.time()
s = ''.join([chr(i) for i in range(96, 123)]*1000000)
t2 = time.time()
print(f'Time-consuming: {t2-t1}')

实验结果如下:

类型耗时
+=24.35s
''.join()0.26s

得出结论:当需要累加的字符串很多时,''.join() 的速度明显更快。

参考

https://google.github.io/styleguide/pyguide.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Xavier Jiezou

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值