请判断一个链表是否为回文链表。
示例 1:
输入: 1->2
输出: false
示例 2:
输入: 1->2->2->1
输出: true
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public boolean isPalindrome(ListNode head) {
List<Integer> arr=new ArrayList<>();
while(head!=null){
arr.add(head.val);
head=head.next;
}
for(int i=0,j=arr.size()-1;i<j;i++,j--){
if(arr.get(i).intValue()!=arr.get(j).intValue())return false;
}
return true;
}
}