目录
- 题目描述:
- 示例 :
- 代码实现:
题目描述:
给你一个链表,两两交换其中相邻的节点,并返回交换后链表的头节点。你必须在不修改节点内部的值的情况下完成本题(即,只能进行节点交换)。
示例 :
输入:head = [1,2,3,4]
输出:[2,1,4,3]
代码实现:
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
public ListNode swapPairs(ListNode head) {
ListNode dummy = new ListNode();
dummy.next = head;// 虚拟头节点,指向head
ListNode cur = dummy;
// 偶数个数节点后继为空时结束,奇数个数节点后继的后继为空时结束
while (cur.next != null && cur.next.next != null) {
ListNode temp = cur.next;// 保存当前后继
ListNode temp1 = cur.next.next.next;// 保存当前后继的后继的后继
// 开始交换,当前cur之后的两个节点
cur.next = cur.next.next;// 当前节点指向其后继的后继
cur.next.next = temp;// 当前后继指向临时节点temp,即交换之后的靠后节点
temp.next = temp1;// 临时节点temp指向临时节点temp1
// 更新cur的位置
cur = cur.next.next;// cur更新到下一轮交换的两个节点的前驱
}
return dummy.next;// 返回虚拟头节点的后继
}
}