gpt4 book ai didi

loops - 如何在lua中迭代表中的元素对

转载 作者:行者123 更新时间:2023-12-01 08:17:19 24 4
gpt4 key购买 nike

如何迭代lua中的表元素对?我想实现循环和非循环迭代ver对的无副作用方式。

I have table like this:
t = {1,2,3,4}

Desired output of non-circular iteration:
(1,2)
(2,3)
(3,4)

Desired output of circular iteration:
(1,2)
(2,3)
(3,4)
(4,1)

最佳答案

圆形 shell 的另一种解决方案

   local n=#t
for i=1,n do
print(t[i],t[i%n+1])
end

关于loops - 如何在lua中迭代表中的元素对,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7879156/

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