leetcode 回文鍊錶 python3

2021-10-07 20:00:39 字數 1248 閱讀 8707

class

solution

:def

ispalindrome

(self, head)

:"""

判斷乙個鍊錶是否是回文的,很自然的想法就是兩個指標,乙個指標從前往後走,乙個指標從後往前走,判斷元素值是否相同,這裡要分幾個步驟來進行求解:

1、找到鍊錶長度的一半,用追趕法,乙個指標一次走兩步,乙個指標一次走一步

2、將後一半陣列轉置

3、判斷鍊錶是否是回文鍊錶

:type head: listnode

:rtype: bool

"""slow = fast = head

while fast and fast.

next

: slow = slow.

next

fast = fast.

next

.next

node =

none

while slow:

nxt = slow.

next

slow.

next

= node

node = slow

slow = nxt

while node and head:

if node.val != head.val:

return

false

node = node.

next

head = head.

next

return

true

# definition for singly-linked list.

# class listnode:

# def __init__(self, x):

# self.val = x

# self.next = none

class

solution

:def

ispalindrome

(self, head)

:"""

:type head: listnode

:rtype: bool

"""nums =

while head:

head = head.

next

return nums == nums[::

-1]

leetcode 鍊錶 回文鍊錶

請判斷乙個鍊錶是否為回文鍊錶。示例 1 輸入 1 2 輸出 false 示例 2 輸入 1 2 2 1 輸出 true 高階 你能否用 o n 時間複雜度和 o 1 空間複雜度解決此題?head null 空鍊錶,回文,返回true head.next null 只有乙個節點的列表,回文,返回tru...

leetcode 鍊錶 回文鍊錶

請判斷乙個鍊錶是否為回文鍊錶。示例 1 輸入 1 2輸出 false示例 2 輸入 1 2 2 1輸出 true高階 你能否用 o n 時間複雜度和 o 1 空間複雜度解決此題?思路 利用快慢指標找到中間節點,當快指標走到末尾時,慢指標指向中間節點 交中間節點之後的節點進行鍊錶反轉 設定指標p1從h...

回文鍊錶 LeetCode

請判斷乙個鍊錶是否為回文鍊錶。你能否用 o n 時間複雜度和 o 1 空間複雜度解決此題?輸入 1 2 2 1 輸出 true 思路 如何判斷回文,從中間位置開始向兩邊不斷判斷相等並移動。關鍵點一 如何找到鍊錶中間位置。採用兩個指標,指標p移動兩格,指標mid移動一格,當p移動終點時,指標mid所在...