step1:定义一个数组temp,用于存储链表中的值。 step2:判断数组翻转后的结果和输入的正序结果是否一致。 class ListNode(object): def __init__(self, x=0, next=None): self.val=x self.next=next class Solution(object): def isPail(self, head): temp = list() while(head): temp.append(head.val) head = head.next if tem...