您的位置:首页 > 其它

gc野马通过压力测试(只有1K单位的容量,gc作用明显)

2011-04-07 11:55 393 查看
(defun pp (s)

(print s)

)

(defun test (n)

(if (> n 0)

(+ n (test (- n 1) ) )

0

)

)

(defun test (n)

(if (> n 0)

(+ (test (- n 1) ) (test (- n 2) ) )

1

)

)

(test 39)

(test 40)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐