gpt4 book ai didi

lua - 从lua中很长的字符串中获取随机模式匹配的最快方法是什么?

转载 作者:行者123 更新时间:2023-12-01 04:36:16 24 4
gpt4 key购买 nike

我有一个超过 200 万个字符的字符串,我觉得我目前从模式中找到随机匹配的方法并不快。

local function getRandomMatch(string, pattern)
local occurenceCount = select(2, string.gsub(string, pattern, ""))
local index, randomIndex = 0, math.random(1, occurenceCount)
for match in string:gmatch(pattern) do
index = index + 1
if index == randomIndex then
return match
end
end
end

有没有办法可以更快?

最佳答案

local find, random, match = string.find, math.random, string.match

local function getRandomMatch(string, pattern)
local pos, random_pos = 0, 0
for cnt = 1, math.huge do
pos = find(string, pattern, pos + 1)
if not pos then
return match(string, pattern, random_pos)
elseif random(cnt) == 1 then
random_pos = pos
end
end
end

for j = 1, 20 do
print(getRandomMatch("1234", "%d%d"))
end

更新:
快速和肮脏的解决方案:
(“脏”的意思是“匹配是随机的,但选择的概率不等”)
local random, match = math.random, string.match

local function getRandomMatchFastAndDirty(string, pattern)
return match(string, pattern, random(#string)) or match(string, pattern)
end

关于lua - 从lua中很长的字符串中获取随机模式匹配的最快方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51715430/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com