previous | index | next

Back to Yet Another RA-Stack Representation

Q: Must we also redefine nodes-down? Recall:
(define nodes-down
 (lambda (n node-list)
   (if (= n 0)
       node-list
       (nodes-down (- n 1) (node-rest node-list)))))
A:

previous | index | next