SCIP习题1.32

(define (accumulate combiner null-value term a next b)
  (if (> a b)
      null-value
      (combiner (term a)
                (accumulate combiner null-value term (next a) next b))))
posted @ 2007-01-04 14:23  浅蓝の天   阅读(189)  评论(0编辑  收藏  举报