scip 练习2.20
Posted hjj-fighting
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scip 练习2.20相关的知识,希望对你有一定的参考价值。
(define (same-parity x . z) (define (q? y) (= (remainder y 2) 1)) (define (o? y) (= (remainder y 2) 0)) (define (jg z f) (define m ‘()) (define (je a f m) (if (f (car a)) (append m (list (car a))) m)) (if (null? (cdr z)) (je z f m) (append (je z f m) (jg (cdr z) f)))) (if (q? x) (append (list x) (jg z q?)) (append (list x) (jg z o?))))
以上是关于scip 练习2.20的主要内容,如果未能解决你的问题,请参考以下文章
《DSP using MATLAB》Problem 2.20