连连看地图生成算法

元素个数:n行*m列;元素种类有c种

数组 touchObject[n][m];  //连连看元素数组

数组 objectTypeBeenUsedCount[c] //连连看元素类型使用统计

 

方式1:末尾补全法

随机生成数组touchObject里前m*n-c个元素,对应的objectTypeBeenUsedCount[c]++

遍历objectTypeBeenUsedCount,找出其中为奇数的元素类型,补全在touchObject最后c个空余位置

补全touchObject空余的元素,为了简单,用同种元素补全,并打乱

 

方式2: 根据奇数*2 =偶数的原则

1:随机生成touchObject一半的元素,将其拷贝到另外一半(用于确保元素都为偶数)

2:遍历数组,打乱位置

 

下面给出方式1的lua实现

 

复制代码
function generateRow(rowAmount,ColumnAmount,TypeAmount)

  math.randomseed(os.time())

  local touchObjectArray={}
  local typeUsedAmountArray = {}
  local totalAmount = rowAmount*ColumnAmount-TypeAmount
  local currentItemAmount=0
  local swapTempValue=0

  for i=1,rowAmount do
     for j=1,ColumnAmount do
        local currentType = math.random(TypeAmount)

        currentItemAmount = currentItemAmount+1
        touchObjectArray[currentItemAmount]= currentType

        local currentTypeUsedAmount = typeUsedAmountArray[currentType] or 0
        currentTypeUsedAmount = currentTypeUsedAmount+1
        typeUsedAmountArray[currentType] = currentTypeUsedAmount

        if currentItemAmount>totalAmount then
           break
        end
     end
  end

  for i,v in ipairs(typeUsedAmountArray) do

     if v %2 >0 then
       currentItemAmount = currentItemAmount+1
       touchObjectArray[currentItemAmount] = i
     end
  end

  local leftAmount = totalAmount+TypeAmount-currentItemAmount

  if leftAmount>0 then
     local paddingType = math.random(TypeAmount)

      for i=1, leftAmount do
       --remix the padding value
       local indexToSwap = math.random(currentItemAmount)
       swapTempValue =touchObjectArray[indexToSwap]
       touchObjectArray[indexToSwap]=paddingType

       currentItemAmount = currentItemAmount+1
       touchObjectArray[currentItemAmount]=swapTempValue
      end
  end

  return touchObjectArray
end


local lianLianKanMapArray =generateRow(4,5,4)

for i=1,#lianLianKanMapArray do
    print(lianLianKanMapArray[i])
end
复制代码

 

posted @   谪仙  阅读(1643)  评论(0编辑  收藏  举报
编辑推荐:
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?
· 使用C#创建一个MCP客户端
点击右上角即可分享
微信分享提示