You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given pointer to the head node of a linked list, the task is to recursively reverse the linked list. We need to reverse the list by changing links between nodes.
3
+
4
+
Examples:
5
+
6
+
Input : Head of following linked list
7
+
1->2->3->4->NULL
8
+
Output : Linked list should be changed to,
9
+
4->3->2->1->NULL
10
+
11
+
'''
12
+
13
+
14
+
'''Recursive Approach'''
15
+
16
+
17
+
defreverseList(head):
18
+
19
+
ifnothead:
20
+
returnNone
21
+
22
+
newHead=head# head is current node that we are at in our recursive call
23
+
ifhead.next: # if we keep reversing
24
+
newHead=reverseList(head.next) # now the result will be new head
25
+
head.next.next=head# reversing the link between the next node and head
26
+
head.next=None# if head happens to be the first node in the list we're setting the next pointer to null
27
+
28
+
returnnewHead# reverse the list and return the new head
0 commit comments