I hit the below issue when I write a recursive function to reverse a list in-place. I could change the input parameter.
def reverse_string(s):
if len(s) <= 1:
return
else:
s[0], s[-1] = s[-1], s[0]
reverse_string(s[1:-1])
s = ['A','B','C','D','E','F']
reverse_string(s)
print(s)
The output is
['F', 'B', 'C', 'D', 'E', 'A']
It looks the changes I made in recursion are rolled back after the recursion call returns. I don't understand why. Can anybody help?
Slicing a list creates a new list, so modifying the sliced list has no effect on the original list. Instead, you can make the function accept an offset as a second parameter, so that swapping of the items according to the offset from either ends of the list are performed on the original list:
so that:
outputs: