LeetCode 제목 - 체인 테이블 반전(python 구현)

1467 단어 Leet Code 제목.

제목


단일 체인 테이블을 반전합니다.
예:
 : 1->2->3->4->5->NULL
 : 5->4->3->2->1->NULL

진급: 체인 시계를 교체하거나 귀속적으로 반전할 수 있습니다.너는 두 가지 방법으로 이 문제를 해결할 수 있니?

python 코드 구현 L:


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

class Solution:
    def reverseList(self, head):
        """
        :type head: ListNode
        :rtype: ListNode
        """
        if not head or not head.next:
            return head
        last = None 
        while head:
            
            t = head.next
            head.next = last
            last = head
            head = t
        return last

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

class Solution:
    def reverseList(self, head):
        """
        :type head: ListNode
        :rtype: ListNode
        """

        if head is None:
            return
        if head.next is None:
            p = head
        else:
            t=Solution()
            p = t.reverseList(head.next)
            head.next.next = head
            head.next = None
        return p

 
 
 
 
 
 
 
 

좋은 웹페이지 즐겨찾기