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  浅蓝の天   阅读(194)  评论(0)    收藏  举报