leetcode(10)-删除链表的倒数第N个节点

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

示例:

给定一个链表: 1->2->3->4->5, 和 n = 2.

当删除了倒数第二个节点后,链表变为 1->2->3->5.
说明:

给定的 n 保证是有效的。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list

class Solution:
    def removeNthFromEnd(self, head: ListNode, n: int) -> ListNode:
        lists = []
        arrow = head
        while arrow:
            lists.append(arrow)
            arrow = arrow.next
        print()
        if -n-1>=-len(lists): # 注意是等号,好好算一下
            lists[-n-1].next = lists[-n].next
        else:
            return head.next
        return head 

猜你喜欢

转载自www.cnblogs.com/Lzqayx/p/12141878.html