leetcode——19. 删除链表的倒数第N个节点

Posted 欣姐姐

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode——19. 删除链表的倒数第N个节点相关的知识,希望对你有一定的参考价值。

用列表完成!!!!

# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution:
    def removeNthFromEnd(self, head: ListNode, n: int) -> ListNode:
        if head.next==None and n==1:
            return 
        a=[]
        while head:
            a.append(head.val)
            head=head.next
        #print(a)
        #print(len(a))
        a.pop(len(a)-n)
        head=ListNode(a[0])
        p=head
        for i in range(1,len(a)):
            p.next=ListNode(a[i])
            p=p.next
        return head
执行用时 :44 ms, 在所有 python3 提交中击败了86.21%的用户
内存消耗 :13.8 MB, 在所有 python3 提交中击败了5.53%的用户
 
                                                                              ——2019.10.23

以上是关于leetcode——19. 删除链表的倒数第N个节点的主要内容,如果未能解决你的问题,请参考以下文章

leetcode 19.删除链表的倒数第N个节点

leetcode 19. 删除链表的倒数第N个节点

leetcode 19. 删除链表的倒数第N个节点

leetcode 19 删除链表的倒数第N个节点

LeetCode19. 删除链表的倒数第N个节点

LeetCode 19——删除链表的倒数第 N 个节点