Last active
December 18, 2015 10:19
-
-
Save grauwoelfchen/5767831 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(define t-empty #f) | |
(define t-value car) | |
(define t-left cadr) | |
(define t-right caddr) | |
(define (t-node value l-node r-node) | |
(list value l-node r-node)) | |
(define (t-empty? node) | |
(equal? node t-empty)) |
Author
grauwoelfchen
commented
Jun 12, 2013
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment