Given a linked list, remove the nth node from the end of list and return its head.
For example,
Given linked list: 1->2->3->4->5, and n = 2. After removing the second node from the end, the linked list becomes 1->2->3->5.
Note:
Given n will always be valid.
Try to do this in one pass.
Subscribe to see which companies asked this question
最好是一次遍历就搞定,那么,可以先让一个fast指针,走n下,然后两个指针一块走,fast走到头,那么,从头开始走的指针就到了应该到的位置
# Definition for singly-linked list.
# class ListNode(object):
# def __init__(self, x):
# self.val = x
# self.next = None
class Solution(object):
def removeNthFromEnd(self, head, n):
i = 0
fast = head.next
while i < n:
if not fast:
return head.next
fast = fast.next
i+=1
p = head
while fast:
p = p.next
fast = fast.next
if p.next is None:
p.next = None
else:
p.next = p.next.next
return head
"""
:type head: ListNode
:type n: int
:rtype: ListNode
"""

本文介绍了一种高效算法,用于在一次遍历中移除链表的倒数第N个节点。该算法使用快慢双指针技巧,确保了操作的简洁性和高效性。

被折叠的 条评论
为什么被折叠?



