码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-01-02 22:54:45      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:pytho   uri   ret   -o   tco   nod   ems   move   list   

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

链接 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

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

标签:pytho   uri   ret   -o   tco   nod   ems   move   list   

原文地址:https://www.cnblogs.com/Lzqayx/p/12142215.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!