所以,正如标题所说,我想在Lua中对表格进行排序。 下面是一个这样的嵌套表示例。
tabl = {2.0={amount=281.0, meta=0.0, displayName=Dirt, name=minecraft:dirt}, 3.0={amount=190103.0, meta=0.0, displayName=Cobblestone, name=minecraft:cobblestone}, ...}
我想查看并返回列出的前十名tabl[*]['amount']
的表格,其中tabl[*]['displayName']
*是tabl[1.0]
到tabl[max.0]
完成的表应该类似于:
sorted = {1={displayName=Cobblestone, amount=190103}, 2={displayName=Dirt, amount=281}, ...}
我希望这对所有人都有意义。
链接到完整的嵌套表:Full Piece
仅供参考:我无法控制桌子如何归还给我;我是通过this API中的listItems()
函数获得的。
答案 0 :(得分:3)
首先,您的数组 不是语法正确 。它应该更像是:
local people = {
{Name="Alice",Score=10},
{Name="Bob",Score=3},
{Name="Charlie",Score=17}
}
其次,table.sort
函数应该完成这项工作。在我的特定示例中,它看起来像这样::
table.sort(people, function(a,b) return a.Score > b.Score end)
最后,要获得顶部N
只需迭代:
for i = 1,N do
print(people[i].Name, people[i].Score)
end
答案 1 :(得分:0)
所以,我在这里工作了一段时间,感谢社区的回答,我想出了这篇文章:
bridge = peripheral.wrap("left")
items = bridge.listItems()
sorted = {}
for i, last in next, items do
sorted[i] = {}
sorted[i]["displayName"] = items[i]["displayName"]
sorted[i]["amount"] = items[i]["amount"]
end
table.sort(sorted, function(a,b) return a.amount > b.amount end)
for i = 1, 10 do
print(i .. ": " .. sorted[i].displayName .. ": " .. sorted[i].amount)
end
它返回了前十大库存:
1: Cobblestone: 202924
2: Gunpowder: 1382
3: Flint: 1375
4: Oak Sapling: 1099
5: Arrow: 966
6: Bone Meal: 946
7: Sky Stone Dust: 808
8: Certus Quartz Dust: 726
9: Rotten Flesh: 627
10: Coal: 618