zoukankan      html  css  js  c++  java
  • 连连看地图生成算法

    元素个数: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
  • 相关阅读:
    AndroidStudio开发体温上报系统------问题总结
    AndroidStudio--app是如何运行的
    sqlite操作
    sqlite数据库
    Android Service
    echart自定义主题
    vue监听数组变化
    Django:数据库驱动安装
    pycharm链接mysql报错: Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezone' property manually.
    Django2.2:UnicodeDecodeError: 'gbk' codec can't decode byte 0xa6 in position 9737: illegal multibyte sequence
  • 原文地址:https://www.cnblogs.com/kimmy/p/3622349.html
Copyright © 2011-2022 走看看