leetcode-234-回文链表

Posted 真不知道叫啥好

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-234-回文链表相关的知识,希望对你有一定的参考价值。

题目描述;

 

 方法一:O(N) O(1)

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

class Solution:
    def isPalindrome(self, head: ListNode) -> bool:
        if not head or not head.next:return True
        slow = head
        fast = head
        while fast and fast.next:
            fast = fast.next.next
            slow = slow.next
        if fast:
            slow = slow.next
        prew = None
        cur = slow
        while cur:
            tmp = cur.next
            cur.next = prew
            prew = cur
            cur = tmp
        p1 = head
        p2 = prew
        while p1 and p2:
            if p1.val!=p2.val:return False
            p1 = p1.next
            p2 = p2.next
        return True
                

 

以上是关于leetcode-234-回文链表的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 234. 回文链表

Leetcode234. 回文链表(快慢指针+反转链表)

LeetCode234. 回文链表

Leetcode-234. 回文链表

LeetCode 234——回文链表

算法热门:回文链表(LeetCode 234)