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

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

链接 https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list/

凑数吧,其实不用数组也行,维护一个长度为n的绳子,拴住最前面的那个和后面的那个,也可以。

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
posted @ 2020-01-02 21:51  木子士心王大可  阅读(109)  评论(0)    收藏  举报