/**
example: How to easily Cache in C.
Author: suxiaojack
Date:2008.12
Licence:No Limited.
看看Lua源代码的test中一段代码:
fib.lua
-----------
-- fibonacci function with cache
-- very inefficient fibonacci function
function fib(n)
N=N+1
if n<2 then
return n
else
return fib(n-1)+fib(n-2)
end
end
-- a general-purpose value cache
function cache(f)
local c={}
return function (x)
local y=c[x]
if not y then
y=f(x)
c[x]=y
end
return y
end
end
-- run and time it
function test(s,f)
N=0
local c=os.clock()
local v=f(n)
local t=os.clock()-c
print(s,n,v,t,N)
end
n=arg[1] or 24 -- for other values, do lua fib.lua XX
n=tonumber(n)
print("","n","value","
C语言简单数据缓存实现
于 2008-12-03 13:04:00 首次发布
本文详细探讨了如何在C语言中实现简单的数据缓存系统,包括缓存的基本概念、设计原理和常见算法。通过实例解析,展示了如何高效地存储和检索数据,以提升程序性能。
摘要由CSDN通过智能技术生成