我在 Lua 中有 2 个函数,它们创建一个字典表并允许检查一个单词是否存在:
local dictTable = {}
local dictTableSize = 0
function buildDictionary()
local path = system.pathForFile("wordlist.txt")
local file = io.open( path, "r")
if file then
for line in file:lines() do
dictTable[line] = true
dictTableSize = dictTableSize + 1
end
io.close(file)
end
end
function checkWord(word)
if dictTable[word] then
return(true)
else
return(false)
end
end
现在我希望能够生成几个随机单词。但是由于单词是关键,给定 dictTableSize,我该如何选择一些。
谢谢