题目描述

给定一个链表,两两交换其中相邻的节点,并返回交换后的链表。

示例:

  1. 给定 1->2->3->4, 你应该返回 2->1->4->3.

说明:

  • 你的算法只能使用常数的额外空间。

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

题解

两个注意点:

  1. 插入一个 dummy 头节点

  2. 注意在交换过程中不要动 first 和 second

  1. public ListNode SwapPairs(ListNode head)
  2. {
  3. var dummy = new ListNode(0) { next = head };
  4. var current = dummy;
  5. while (current.next != null && current.next.next != null)
  6. {
  7. var first = current.next;
  8. var second = current.next.next;
  9. first.next = second.next;
  10. current.next = second;
  11. current.next.next = first;
  12. current = current.next.next;
  13. }
  14. return dummy.next;
  15. }