I want to have a function that will return the reverse of a list that it is given -- using recursion. How can I do that?
|
|
Append the first element of the list to a reversed sublist:
|
|||
|
|
|
I know it's not a helpful answer (though this question has been already answered), but in any real code, please don't do that. Python cannot optimize tail-calls, has slow function calls and has a fixed recursion depth, so there are at least 3 reasons why to do it iteratively instead. |
|||
|
|
A bit more explicit:
This turns into:
Which turns into:
Which is the same as another answer. Tail recursive / CPS style (which python doesn't optimize for anyway):
|
||||
|
|
|
The trick is to join after recursing:
def backwards(l):
if not l:
return
x, y = l[0], l[1:]
return backwards(y) + [x]
|
|||
|
|
|
Take the first element, reverse the rest of the list recursively, and append the first element at the end of the list. |
|||
|
|
|
This one reverses in place. (Of course an iterative version would be better, but it has to be recursive, hasn't it?)
|
|||
|
|
|
||||
|
|