19. Remove Nth Node From End of

2019-03-22  本文已影响0人  Chiduru

【Description】

Given a linked list, remove the n-th node from the end of list and return its head.

Example:

Given linked list: 1->2->3->4->5, and n = 2.

After removing the second node from the end, the linked list becomes 1->2->3->5.
Note:

Given n will always be valid.

【Idea】

【Solution】

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

# solution 1
class Solution:
    def removeNthFromEnd(self, head: ListNode, n: int) -> ListNode:
        temp = head
        nums = []
        while temp:
            nums.append(temp.val)
            temp = temp.next
        length = len(nums)
        if n > length:
            return 
        if length == 1 and n == 1:
            return []
        del nums[length-n]
        head = ListNode(None)
        prev = head
        for i in nums:
            curr = ListNode(i)
            prev.next = curr
            prev = prev.next
        return head.next

# solution 2

class Solution:
    def removeNthFromEnd(self, head: ListNode, n: int) -> ListNode:
        fast = slow = head
        for i in range(n):
            fast = fast.next
        if fast == None:
            return head.next 
        while fast.next:
            slow = slow.next
            fast = fast.next
        slow.next = slow.next.next
        return head
        

上一篇 下一篇

猜你喜欢

热点阅读