Leetcode 24 两两交换链表中的节点 学习感悟

思路:递归思想

2->1->4->3->5 链表,head=21互换,变12的返回值,其中2的next等于调用下一层435的返回值,43互换变34返回值节点3给2的next,4的next调用递归5的返回值

# include<iostream>
# include<vector>
# include<string>
# include<algorithm>
# include<math.h>
# include<climits>
# include<stack>
# include<queue>
using namespace std;

struct ListNode {
    int val;
    ListNode *next;
    ListNode() : val(0), next(nullptr) {}
    ListNode(int x) : val(x), next(nullptr) {}
    ListNode(int x, ListNode *next) : val(x), next(next) {}
};
ListNode* swaptwo(ListNode* head) {
    if (!head)return head;//head空返回NULL
    if (!head->next) return head;//只有一个head无下一个节点直接返回
    ListNode* p = head->next;
    head->next = swaptwo(p->next);//递归下一部分的链表
    p->next = head;
    return p;//返回新头
}
ListNode* swapPairs(ListNode* head) {
    head = swaptwo(head);
    return head;
}

int main(void) {
    ListNode* head = new ListNode(2, new ListNode(1, new ListNode(4, new ListNode(3, new ListNode(5)))));// 2->1->4->3->5 链表
    head = swapPairs(head);
    ListNode* p = head;
    while (p) {
        cout << p->val << " ";
        p = p->next;
    }//输出应该是 1->2->3->4->5
    cout << endl;
	system("pause");
	return  0;
}


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值