文章目录
删除链表的倒数第N个结点
【题目】
给你一个链表,删除链表的倒数第 n 个结点,并且返回链表的头结点。
- 进阶:你能尝试使用一趟扫描实现吗?
示例 1:
- 输入:head = [1,2,3,4,5], n = 2
- 输出:[1,2,3,5]
示例 2:
- 输入:head = [1], n = 1 2
- 输出:[]
示例 3:
- 输入:head = [1,2], n = 1
- 输出:[1]
提示:
- 链表中结点的数目为 sz 1 <= sz <= 30
- 0 <= Node.val <= 100
- 1 <= n <= sz
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
【我的方法】
快慢指针。
- 要注意的是删除第一个节点的情况。
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def removeNthFromEnd(self, head: ListNode, n: int) -> ListNode:
fast=head
slow=head
pre=ListNode()
while(fast and n>0):
fast=fast.next
n-=1
if not fast:
if n>0:
return head
else:
pre=head.next
head=pre
return head
pre.next=slow
while(fast):
pre=slow
slow=slow.next
fast=fast.next
pre.next=slow.next
return head
# 执行用时:40 ms, 在所有 Python3 提交中击败了75.83%的用户
# 内存消耗:14.8 MB, 在所有 Python3 提交中击败了77.06%的用户