234.回文链表
给你一个单链表的头节点 head ,请你判断该链表是否为
回文链表
。如果是,返回 true ;否则,返回 false 。
示例 1:
输入:head = [1,2,2,1]
输出:true
示例 2:
输入:head = [1,2]
输出:false
提示:
- 链表中节点数目在范围
[1, 105]内 0 <= Node.val <= 9
题解:
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
public boolean isPalindrome(ListNode head) {
ListNode cur = head;
ArrayList<Integer> stack = new ArrayList<>();
while (cur != null) {
stack.add(cur.val);
cur = cur.next;
}
int left = 0;
int right = stack.size() - 1;
while (left < right) {
if (stack.get(left).equals(stack.get(right))) {
left++;
right--;
continue;
} else {
return false;
}
}
return true;
}
}