#include <iostream>
using namespace std;
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
class Solution {
public:
ListNode* reverseListRecursion(ListNode *prev,ListNode* head){
if(head==NULL) return prev;
ListNode *next=head->next;
head->next=prev;
prev=head;
reverseListRecursion(prev,next);
}
ListNode* reverseList(ListNode* head) {
if(head==NULL||head->next==NULL)return head;
head= reverseListRecursion(NULL,head);
return head;
}
};
int main()
{
ListNode *l1=new ListNode(1);
ListNode *l2=new ListNode(2);
ListNode *l3=new ListNode(3);
ListNode *l4=new ListNode(4);
l1->next=l2;
l2->next=l3;
l3->next=l4;
Solution s;
l1=s.reverseList(l1);
cout<<l1->next->next->val<<endl;
return 0;
}
using namespace std;
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
class Solution {
public:
ListNode* reverseListRecursion(ListNode *prev,ListNode* head){
if(head==NULL) return prev;
ListNode *next=head->next;
head->next=prev;
prev=head;
reverseListRecursion(prev,next);
}
ListNode* reverseList(ListNode* head) {
if(head==NULL||head->next==NULL)return head;
head= reverseListRecursion(NULL,head);
return head;
}
};
int main()
{
ListNode *l1=new ListNode(1);
ListNode *l2=new ListNode(2);
ListNode *l3=new ListNode(3);
ListNode *l4=new ListNode(4);
l1->next=l2;
l2->next=l3;
l3->next=l4;
Solution s;
l1=s.reverseList(l1);
cout<<l1->next->next->val<<endl;
return 0;
}