LeetCode算法题 - 24. 两两交换链表中的节点(c语言)

LeetCode算法题 - 24. 两两交换链表中的节点(c语言),第1张

LeetCode算法题 - 24. 两两交换链表中的节点(c语言) 24. 两两交换链表中的节点

题目连接:https://leetcode-cn.com/problems/swap-nodes-in-pairs/
难度:中等
给定一个链表,两两交换其中相邻的节点,并返回交换后的链表。

你不能只是单纯的改变节点内部的值,而是需要实际的进行节点交换。

示例 1:
输入:head = [1,2,3,4]
输出:[2,1,4,3]

示例 2:
输入:head = []
输出:[]

示例 3:
输入:head = [1]
输出:[1]

提示:

链表中节点的数目在范围 [0, 100] 内
0 <= Node.val <= 100
来源:力扣(LeetCode)

思路
  • 使用一个虚拟头结点dummyHead进行模拟 *** 作。然后分为四个步骤去移动指针
    如图所示:

代码实现


struct ListNode* swapPairs(struct ListNode* head){
    struct ListNode* dummyHead = (struct ListNode* )malloc(sizeof(struct ListNode));//建立一个虚拟头节点
    dummyHead ->next =head;
    struct ListNode *cur = dummyHead;
    while(cur->next && cur->next->next)
    {
        struct ListNode *temp = cur->next;//两个临时指针用来保存地址
        struct ListNode *temp1 = cur->next->next->next;
        cur->next = cur->next->next;//第一步
        cur->next->next = temp;//第二步
        cur->next->next->next = temp1;//第三步

        cur = cur->next->next;//第四步
    }
    return dummyHead->next;
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5634673.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存