Is it possible to implement the R5RS scheme function "length" using the car and cdr family of functions? If so could someone post the implementation?
Thanks,
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
Of course, it's pretty simple. I'm not giving a straight answer because this looks like homework and anyway it's trivial to write. Fill-in the blanks:
Notice that only |
|||
|
|
|
Óscar López's answer is correct. Here are two more implementations (again with the fill-in-the-blanks). The first one is a left-fold solution (contrast with Óscar's solution, which is a right-fold one):
This has the advantage of being tail-recursive, whereas the right-fold version isn't. The second one is a tortoise-and-hare solution, which allows cyclic lists to be detected (the earlier solutions would run forever if given a cyclic list):
|
|||
|
|
foldrorreduce. You may want to look that up if you feel like doing some extra learning >.> – Wes Dec 3 '12 at 7:39foldl. :-) – Chris Jester-Young Dec 3 '12 at 13:43