Leetcode-Easy 234. Palindrome Linked List

234. Palindrome Linked List

  • 描述:
    判断一个单链表是否左右对称


    Leetcode-Easy 234. Palindrome Linked List_第1张图片
  • 思路:
    直接判断关于中心对称位置的节点值是否相等
  • 代码
# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution(object):
    def isPalindrome(self, head):
        """
        :type head: ListNode
        :rtype: bool
        """
        node_list=[]
        while head:
            node_list.append(head)
            head=head.next
            
      
        for i in range(int(len(node_list)/2)):
            print(node_list[i].val,node_list[-i-1].val)
            if node_list[i].val!=node_list[-i-1].val:
                return False
        return True
        

你可能感兴趣的:(Leetcode-Easy 234. Palindrome Linked List)