This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
g_HashTable = 0 | |
--创建hash表 | |
function createHashTable() | |
local tb = {}; | |
local _insert = function(k,v) | |
if k==0 then | |
k=1; | |
end | |
for i = k,k+999,1 do | |
if i>1000 then |