题目描述

给定一个链表,删除链表的倒数第 n 个节点,并且返回链表的头结点。

示例:

  1. 给定一个链表: 1->2->3->4->5, n = 2.
  2. 当删除了倒数第二个节点后,链表变为 1->2->3->5.

说明:
给定的 n 保证是有效的。

题解

一次遍历法(推荐)

此处是官方的一次遍历法

使用两个指针。第一个指针从列表的开头向前移动 n+1 步,而第二个指针将从列表的开头出发。现在,这两个指针被 n 个结点分开。我们通过同时移动两个指针向前来保持这个恒定的间隔,直到第一个指针到达最后一个结点。此时第二个指针将指向从最后一个结点数起的第 n 个结点。我们重新链接第二个指针所引用的结点的 next 指针指向该结点的下下个结点。

019 删除链表的倒数第N个节点 - 图1

  1. public ListNode RemoveNthFromEnd(ListNode head, int n)
  2. {
  3. var dummy = new ListNode(0) { next = head };
  4. var first = dummy;
  5. var second = dummy;
  6. // Advances first pointer so that the gap between first and second is n nodes apart
  7. for (var i = 1; i <= n + 1; i++)
  8. {
  9. first = first.next;
  10. }
  11. // Move first to the end, maintaining the gap
  12. while (first != null)
  13. {
  14. first = first.next;
  15. second = second.next;
  16. }
  17. second.next = second.next.next;
  18. return dummy.next;
  19. }

借助 List 和哑节点

遍历将链表问题转换为 List 问题。

  1. public ListNode RemoveNthFromEnd(ListNode head, int n)
  2. {
  3. var dummy = new ListNode(0) { next = head };
  4. var list = new List<ListNode> { dummy };
  5. var first = dummy;
  6. while (first != null)
  7. {
  8. list.Add(first);
  9. first = first.next;
  10. }
  11. var length = list.Count;
  12. if (n == 1)
  13. {
  14. list[length - 2].next = null;
  15. }
  16. else
  17. {
  18. list[length - (n + 1)].next = list[length - n + 1];
  19. }
  20. return dummy.next;
  21. }