leetcode(10)-删除链表的倒数第N个节点
Posted 李志琦的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode(10)-删除链表的倒数第N个节点相关的知识,希望对你有一定的参考价值。
给定一个链表,删除链表的倒数第 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个节点的主要内容,如果未能解决你的问题,请参考以下文章