請判斷乙個鍊錶是否為回文鍊錶。
示例 1:
輸入: 1->2輸出: false
示例 2:
輸入: 1->2->2->1輸出: true
高階:你能否用 o(n) 時間複雜度和 o(1) 空間複雜度解決此題?
2.1、解法一
# definition for singly-linked list.# class listnode(object):
# def __init__(self, x):
# self.val = x
# self.next = none
class solution(object):
def get_elem(self,head):
n = head
ret =
while n:
n = n.next
return ret
def ispalindrome(self, head):
""":type head: listnode
:rtype: bool
"""ret = self.get_elem(head)
if len(ret) == 0 or len(ret) == 1:
return true
mid = len(ret)//2
if len(ret)%2 == 0:
left = ret[:mid]
right = ret[mid:]
right.reverse()
else:
left = ret[:mid]
right = ret[mid+1:]
right.reverse()
if left == right:
return true
return false
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.找到鍊錶的中間位置...