簡單
請判斷乙個鍊錶是否為回文鍊錶。
示例 1:
輸入: 1->2
輸出: false
示例 2:
輸入: 1->2->2->1
輸出: true
高階:
你能否用 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
: fast = slow = head
while fast and fast.
next
: slow = slow.
next
fast = fast.
next
.next
cur =
none
pre =
none
# 如果fast存在,說明鍊錶的節點為奇數個
# slow所在位置為中間的位置,不需要進行比較
if fast:
cur = slow.
next
else
: cur = slow
# 將後一部分鍊錶逆序
while cur:
temp = cur.
next
cur.
next
= pre
pre = cur
cur = temp
# 乙個乙個進行比較
while pre:
if pre.val == head.val:
pre = pre.
next
head = head.
next
else
:return
false
return
true
LeetCode 234 回文鍊錶
請判斷乙個鍊錶是否為回文鍊錶。definition for singly linked list.struct listnode bool ispalindrome struct listnode head 示例 1 輸入 1 2 輸出 false 示例 2 輸入 1 2 2 1 輸出 true 要...
leetcode 234 回文鍊錶
請判斷乙個鍊錶是否為回文鍊錶。示例 1 輸入 1 2輸出 false 示例 2 輸入 1 2 2 1輸出 true 解法1 使用棧 使用快慢指標找中點,原理是每次快指標走兩步,慢指標走一步,等快指標走完時,慢指標的位置就是中點。我們還需要用棧,每次慢指標走一步,都把值存入棧中,等到達中點時,鍊錶的前...
LeetCode 234 回文鍊錶
請判斷乙個鍊錶是否為回文鍊錶。解題思路 根據 o n 時間複雜度和 o 1 空間複雜度的要求,則不能使用堆疊。首先找到中間節點,然後反轉中間節點之後的節點,最後比較頭結點和中間節點之後元素的大小。bool solution ispalindrome listnode head 1.找到鍊錶的中間位置...