使用对偶表示重新实现Stack(lua程序设计21.7练习21.3题)
local data {}
DualStack {}
function DualStack:new(o)o o or {}self.__index selfsetmetatable(o,self)data[o] {}return o
end
function DualStack:push(v)table.insert(data[self],v)
en…
lua URL解码
local function unescape(s)s string.gsub(s,""," ")s string.gsub(s,"%%(%x%x)",function(h)return string.char(tonumber(h,16))end)return s
endlocal cgi {}
local function decode(s)for name,value in string.gmatch(s,&q…
lua split实现(lua程序设计10.6练习10.1题)
local function split(s,sp)local t {}local last 1local irepeati string.find(s,sp,last,true)if i thenif i ~ last thent[#t1] string.sub(s,last,i-1)endlast i1elseif last < #s thent[#t1] s…