perf: 改冒泡排序为sorted快排以提升速度

This commit is contained in:
nl 2021-12-05 23:06:11 +08:00
parent 7600170986
commit dd78547199
1 changed files with 1 additions and 6 deletions

View File

@ -166,12 +166,7 @@ class ModelLanguage(): # 语音模型类
list_words = list_words_2
#print(list_words,'\n')
#print(list_words)
for i in range(0, len(list_words)):
for j in range(i + 1, len(list_words)):
if list_words[i][1] < list_words[j][1]:
tmp = list_words[i]
list_words[i] = list_words[j]
list_words[j] = tmp
list_words = sorted(list_words, key=lambda x:x[1], reverse=True)
return list_words