lua实现stack(lua程序设计21.7 练习21.1题)
Stack {}
function Stack:new(o)o o or {}self.__index selfsetmetatable(o,self)return o
end
function Stack:push(v)table.insert(self,v)
end
function Stack:pop()local v self[#self]table.remove(…
lua实现继承(lua程序设计21.7 练习21.2题)
StackQueue Stack:new()
function StackQueue:insertBottom(v)table.insert(self,1,v)
endlocal stack2 StackQueue:new()
for i 1, 10 dostack2:push(i)
end
stack2:insertBottom(11)while not stack2:ise…
使用对偶表示重新实现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…