[plt-scheme] Excersise 14.2.3 - HtDP - Ordered list of binary tree nodes

From: Jos Koot (jos.koot at telefonica.net)
Date: Sat Feb 21 10:00:27 EST 2009

Proficiat! jos

----- Original Message ----- 
From: "Charlie Turner" <charlie.h.turner at googlemail.com>
snip>
> (define (inorder BT)
> (cond
>   [(false? BT) empty]
>   [else (append (inorder (node-left BT)) (cons (node-ssn BT)
>                                                (inorder (node-right 
> BT))))]))
>
> All the best
>
> --
> Charlie.
> _________________________________________________
>  For list-related administrative tasks:
>  http://list.cs.brown.edu/mailman/listinfo/plt-scheme 



Posted on the users mailing list.