previous | index | next

List Processing Efficiency: Reversing Lists

Consider the problem of reversing the elements of a list:
           (reverse '(1 2 3 4 5)) ⇒ (5 4 3 2 1)
Q: What is the reverse of the empty list?

A:


previous | index | next