微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

lua

local address_num = 6 local recent_num = 6 local m_online_count_ = 20 local total = 6 local address = 0 local recent = 0 local online = 0 local address_flag = 0 local recent_flag = 0 local online_flag = 0 local res = {} res.a = 1 function select_num(depth,address_num,recent_num,m_online_count_,total ) if total == 0 then print("0 total " .. total.." address " ..address) table.insert(res,{address,recent,online}) return end if total >0 then if depth == 1 then for i = 0,6 do if address_num >=i then total = total - i print("1 total " .. total.." address " ..address) depth =  depth +1 select_num(depth,total ) end end end if depth == 2 then for i = 0,6 do if recent_num >=0 then total = total - i depth =  depth +1 select_num(depth,total ) end end end if depth ==3 then for i = 0,6 do if m_online_count_ >=0 then m_online_count_ = m_online_count_ - 2 online = online +2 total = total - 2 depth =  depth +1 select_num(depth,total ) end end end end select_num(0,6 )

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐