作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想列出从 0000
到 zzzz
的 Base36 字符串的所有组合。
当我使用单线程运行它时,它的运行速度比多线程(约 13-14 秒)更快(约 6-5 秒)。
我读过here为什么使用更多线程会比使用更少线程慢。
但我有 4 个核心(8 个逻辑处理器),我认为这不是我的问题。
我的代码有问题吗?
也许 join()
函数会减慢速度?
这是我的代码:
import time
import threading
# https://codegolf.stackexchange.com/questions/169432/increment-base-36-strings?page=1&tab=votes#tab-top
def inc_base36(s):
L,R=s[:-1],s[-1:];
return s and[[L+chr(ord(R)+1),inc_base36(L)+'0'][R>'y'],L+'a'][R=='9']
def bruteforce(start_id, end_id):
while start_id != end_id:
start_id = inc_base36(start_id)
# Single thread
# --- 5.15600013733 seconds ---
start_time = time.time()
bruteforce('0000', 'zzzz')
print("--- %s seconds ---" % (time.time() - start_time))
# Two threads
# --- 13.603000164 seconds ---
t1 = threading.Thread(target=bruteforce, args = ('0000', 'hzzz')) # in decimal (0, 839807)
t2 = threading.Thread(target=bruteforce, args = ('i000', 'zzzz')) # in decimal (839808, 1679615)
start_time = time.time()
t1.start()
t2.start()
t1.join()
t2.join()
print("--- %s seconds ---" % (time.time() - start_time))
# Three threads
# --- 14.3159999847 seconds ---
t1 = threading.Thread(target=bruteforce, args = ('0000', 'bzzz')) # in decimal (0, 559871)
t2 = threading.Thread(target=bruteforce, args = ('c000', 'nzzz')) # in decimal (559872, 1119743)
t3 = threading.Thread(target=bruteforce, args = ('o000', 'zzzz')) # in decimal (1119744, 1679615)
start_time = time.time()
t1.start()
t2.start()
t3.start()
t1.join()
t2.join()
t3.join()
print("--- %s seconds ---" % (time.time() - start_time))
最佳答案
大多数 Python 实现都有一个 GIL(全局解释器锁),它允许一次执行一个线程。您应该使用没有 GIL 的 Jython 或在脚本中实现多处理。
关于python - 当在多线程中使用暴力破解时,它比单线程慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52026987/
我是一名优秀的程序员,十分优秀!