Skip to content

Commit 369e60a

Browse files
committed
Recursion with Better Time Complexity
1 parent e26c07a commit 369e60a

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

DataStructures/LinkedList/linkedlist

104 Bytes
Binary file not shown.

DataStructures/LinkedList/linkedlist.cpp

+32-1
Original file line numberDiff line numberDiff line change
@@ -226,9 +226,40 @@ node* reverseLL(node* head){
226226

227227
return small;
228228
}
229+
230+
class Pair{
231+
public:
232+
node* head;
233+
node* tail;
234+
};
235+
236+
Pair reverseLinkedList(node* head){
237+
if(head == NULL || head->next == NULL){
238+
Pair ans;
239+
ans.head = head;
240+
ans.tail = head;
241+
return ans;
242+
}
243+
244+
Pair small = reverseLinkedList(head->next);
245+
246+
small.tail->next = head;
247+
head->next = NULL;
248+
249+
Pair ans;
250+
ans.head = small.head;
251+
ans.tail = head;
252+
253+
return ans;
254+
}
255+
256+
node* reverseLLBetter(node* head){
257+
return reverseLinkedList(head).head;
258+
}
259+
229260
int main(){
230261
node *head = takeinput2();
231262

232-
node* h =reverseLL(head);
263+
node* h =reverseLLBetter(head);
233264
print(h);
234265
}

0 commit comments

Comments
 (0)