function back(table1,table2)
local a,b=0,0
for i=0,#table1 do
for j=0,#table2 do
if table2[j]==table[i] then
a=a+1
if i==j then
b=b+1
end
end
end
end
return a,b
end
该段代码功能:比较两个表中相同元素个数(代码中a)和相同元素且下标相同的个数(代码中b),如table1={1,2,3,4},table2={1,3,5,4}则a=3,b=2
问题:a,b返回值总是等于0
慕瓜5323351
相关分类