04-leetcode-回文链表

Posted 一知....半解

tags:

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

请判断一个链表是否为回文链表。

示例 1:

输入: 1->2
输出: false

示例 2:

输入: 1->2->2->1
输出: true
# 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:
        """要完成回文链表,首先第一步找到中间点(采取快慢指针查找)
        第二步,将查找的中间点后的链表反转
        第三步,对比两个链表的值"""
        #快慢指针
        slow,fast = head,head
        #回文最起码的条件
        if not head or not head.next:
            return True
        #找到中间点
        while fast.next and fast.next.next:
            slow,fast = slow.next,fast.next.next
        cur = slow.next #另一半链表头起点
        last = None
        #反转链表
        while cur:
            before = cur.next #防止next断裂
            cur.next = last
            last = cur
            cur = before
        #对比两个链表的值
        while last:
            if last.val != head.val:
                return False
            last,head = last.next,head.next
        return True

 

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

回文链表;相交链表;合并两个有序链表(递归+迭代);

回文链表;相交链表;合并两个有序链表(递归+迭代);

LeetCode234:回文链表

基础结构:链表 回文链表

OR36 链表的回文结构

leetcode 234 回文链表