我必须编写一个可以遍历嵌套表的迭代器。我用coroutine
写了一篇。
它创建了一个(路径,值)对的数组,例如{{key1, key2, key3}, value}
意味着要value
获得nested_table[key1][key2][key3]
。
在那之后我轻松地写了find()
,findall()
,in()
,生活很光明。
function table.extend(tbl, new_value)
local tbl = {table.unpack(tbl)}
table.insert(tbl, new_value)
return tbl
end
function iterate(tbl, parent)
local parent = parent or {}
if (type(tbl)=="table") then
for key, value in pairs(tbl) do
iterate(value, table.extend(parent, key))
end
end
coroutine.yield(parent, tbl)
end
function traverse(root)
return coroutine.wrap(iterate), root
end
然后我意识到我必须使用的Lua环境已将coroutine
列入黑名单。我们不能使用它。所以我尝试在没有coroutine
的情况下获得相同的功能。
-- testdata
local pool = {}
test = {
['a'] = 1,
['b'] = {
['c'] = {2, 3},
['d'] = 'e'
}
}
-- tree traversal
function table.extend(tbl, element)
local copy = {table.unpack(tbl)}
table.insert(copy, element)
return copy
end
local function flatten(value, path)
path = path or {'root'}
pool[path] = value -- this is the 'yield'
if type(value) == 'table' then
for k,v in pairs(value) do
flatten(v, table.extend(path, k))
end
end
end
-- testing the traversal function
flatten(test)
for k, v in pairs(pool) do
if type(v) == 'table' then v = '[table]' end
print(table.concat(k, ' / ')..' -> '..v)
end
此代码返回我需要的内容:
root -> [table]
root / b / c / 1 -> 2
root / b -> [table]
root / a -> 1
root / b / d -> e
root / b / c / 2 -> 3
root / b / c -> [table]
但我仍有问题:我无法使用全局变量pool
,此代码被称为并行。而且我无法从return flatten(...)
周期进行正确的尾调用递归(for
),因为它只返回一次。
所以我的问题是:如何将此函数打包成可以并行调用的函数?换句话说:我可以实现“收益率”和“收益率”。 part是否返回值,而不是将结果传递给全局变量?
我尝试将其设为对象,遵循模式here,但我无法使其正常工作。
答案 0 :(得分:6)
您可以将pool
变量设为本地:
test = {
['a'] = 1,
['b'] = {
['c'] = {2, 3},
['d'] = 'e'
}
}
-- tree traversal
function table.extend(tbl, element)
local copy = {table.unpack(tbl)}
table.insert(copy, element)
return copy
end
local function flatten(value, path, pool) -- third argument is the pool
path = path or {'root'}
pool = pool or {} -- initialize pool
pool[path] = value
if type(value) == 'table' then
for k,v in pairs(value) do
flatten(v, table.extend(path, k), pool) -- use pool in recursion
end
end
return pool -- return pool as function result
end
-- testing the traversal function
local pool = flatten(test)
for k, v in pairs(pool) do
if type(v) == 'table' then v = '[table]' end
print(table.concat(k, ' / ')..' -> '..v)
end