SONG Shengjie

To do list: 24. 两两交换链表中的节点,19.删除链表的倒数第N个节点,面试题 02.07. 链表相交,142.环形链表II,总结

24. 两两交换链表中的节点19.删除链表的倒数第N个节点面试题 02.07. 链表相交142.环形链表II总结

24. 两两交换链表中的节点

题目链接/文章讲解/视频讲解

Hint: temp can be used to save the temporary node.

image

# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, val=0, next=None):
#         self.val = val
#         self.next = next
class Solution:
    def swapPairs(self, head: Optional[ListNode]) -> Optional[ListNode]:
        dummy_head = ListNode (next = head)
        current = dummy_head
        while current.next != None and current.next.next != None:
            temp1 = current.next
            temp2 = current.next.next.next
            current.next = current.next.next
            current.next.next = temp1
            temp1.next = temp2
            current = current.next.next
        return dummy_head.next

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

题目链接/文章讲解/视频讲解

关键点:要删第几个,就要知道它的前一个;快慢指针,快的先走n步,然后再一起走,slow就是倒数第n个

image

# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, val=0, next=None):
#         self.val = val
#         self.next = next
class Solution:
    def removeNthFromEnd(self, head: Optional[ListNode], n: int) -> Optional[ListNode]:
        dummy_head = ListNode (next = head)
        slow = dummy_head
        fast = dummy_head
        n += 1
        while n :
            fast = fast.next
            n -= 1
        while fast:
            fast = fast.next
            slow = slow.next
        slow.next = slow.next.next
        return dummy_head.next

面试题 02.07. 链表相交

题目链接/文章讲解

关键点:求两个链表交点节点的指针。要注意,交点不是数值相等,而是指针相等。

步骤:1.求两个链长度;2.求差值;3.长的那条走到等长的点;4.找交点

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

class Solution:
    def getIntersectionNode(self, headA: ListNode, headB: ListNode) -> ListNode:
        lengthA = lengthB = 0
        curA = headA
        curB = headB

        while curA :
            curA = curA.next
            lengthA += 1
        while curB :
            curB = curB.next
            lengthB += 1
        
        gap = abs(lengthA - lengthB)
        curA = headA
        curB = headB

        if lengthA > lengthB:
            while gap:
                curA = curA.next
                gap -= 1
        else :
            while gap:
                curB = curB.next
                gap -= 1
        
        while curA and curB:
            if curA == curB :
                return curA
            else :
                curA = curA.next
                curB = curB.next

142.环形链表II

题目链接/文章讲解/视频讲解

关键点:是否有环、找入口的推导

image

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

class Solution:
    def detectCycle(self, head: Optional[ListNode]) -> Optional[ListNode]:
        fast = slow = head
        while fast and fast.next :
            fast = fast.next.next
            slow = slow.next
            if fast == slow:
                index1 = fast
                index2 = head
                while index1 != index2:
                    index1 = index1.next
                    index2 = index2.next
                return index1
        return None

总结

题目链接/文章讲解/视频讲解