I'm trying to understand how Common Lisp works, and looking at some exercises. I find that a max-min tree is defined, as follows:
(max ((min (4 5))
(min (6
(max (3 4))
(max (7 9))))
(min (3 8)))))
You are asked to define several functions i...
asked by
03.04.2017 / 11:20