File tree 2 files changed +32
-1
lines changed
DataStructures/LinkedList
2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change @@ -226,9 +226,40 @@ node* reverseLL(node* head){
226
226
227
227
return small;
228
228
}
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
+
229
260
int main (){
230
261
node *head = takeinput2 ();
231
262
232
- node* h =reverseLL (head);
263
+ node* h =reverseLLBetter (head);
233
264
print (h);
234
265
}
You can’t perform that action at this time.
0 commit comments