lua中,从一堆数组里面随机挑选N个出来,而且不能重复挑选。
LUA语言,例如从1,2,3,4,5,6,7中随机选取3个出来,注意不能重复挑选,该怎么写,高人赐教。...
LUA语言,例如从1,2,3,4,5,6,7中随机选取3个出来,注意不能重复挑选,该怎么写,高人赐教。
展开
展开全部
function selectNumber(count,...)
selected={};
math.random(0,#arg);
math.randomseed(os.time());
if #arg<=count then return unpack(arg) end
while #selected < count do
math.random(#arg);
table.insert(selected,table.remove(arg,math.random(#arg)));
end
return unpack(selected);
end
print(selectNumber(3,1,2,3,4,5,6,7))
selected={};
math.random(0,#arg);
math.randomseed(os.time());
if #arg<=count then return unpack(arg) end
while #selected < count do
math.random(#arg);
table.insert(selected,table.remove(arg,math.random(#arg)));
end
return unpack(selected);
end
print(selectNumber(3,1,2,3,4,5,6,7))
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询