当前位置 : 主页 > 网络编程 > lua >

lua – 如何为无符号整数实现%运算符?

来源:互联网 收集:自由互联 发布时间:2021-06-23
如何为lua的无符号整数实现%运算符或函数? 我想过使用类型转换来浮动,但精度是一个问题. function ModU(a, b) if b == 0 then return a end if a == 0 then return 0 end if b 0 then if a 0 then if a b then retu
如何为lua的无符号整数实现%运算符或函数?
我想过使用类型转换来浮动,但精度是一个问题.

function ModU(a, b)
    if b == 0 then return a end
    if a == 0 then return 0 end

    if b < 0 then
        if a < 0 then
          if a < b then return b-a 
          else return a 
          end
       else 
          return a
       end
    else
        if a > 0 then return math.tointeger(a % b) 
        else 
            i = ModU(x & 0x7fffffff + 1, b)
            j = ModU(2^31 - 1, b)
            return ModU(i + j, b)
        end
    end
end
function unsigned_mod(x, y)
   return y<=x and x<0 and x-y or y<0 and x or ((x>>1)%y*2+(x&1)-y)%y
end
网友评论