SCIP Practice Set

Source: Internet
Author: User

2.2.7 Deep-reverse

( define (next  x)  (Cond ((not) x) (     pair?) (Car x)) (Cons (deep-reverse (Car x)) (Next (Cdr x    ))) (else  x))) (Define (deep-reverse x)  (reverse (next x) ))

At first I wanted to take a direct approach to a function.

For example, both of these are faulty, and the main problem is that NULL returns are added to the list, resulting in a bias in the end result and expected

(Define (deep-reverse1 x)  (cond (    pair X) (cond ((NULL) (Cdr x)) (Deep-reverse1 (Car x)))             (Else (list (Deep-reverse1 (Cdr x)) (deep-reverse1 (Car x)))))    (else  x))) (Define (deep-reverse2 x)  (Cond    (pair x) (Cond (null? (Cdr x)) (Deep-Reverse2 (Car x)))             (Else (cons (Deep-reverse2 (Cdr x)) (deep-reverse2 (car x    ))))) (else x)))

SCIP Practice Set

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.