/*
* function ListNode(x){
* this.val = x;
* this.next = null;
* }
*/
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param head ListNode类 the head
* @return bool布尔型
*/
function isPail( head ) {
// write code here
arr=[]
let cur = head
while(cur){
arr.push(cur.val)
cur = cur.next
}
len = Math.floor(arr.length/2)
if(len==0){
return true;
}else{
let k=1
for(let i=0, j=arr.length-1;i<len, j>arr.length-len; i++, j--){
if(arr[i]!=arr[j]){
k=0
break
}else{
k=1
}
}
if(k==0){
return false
}else{
return true
}
}
}
module.exports = {
isPail : isPail
};