-
Notifications
You must be signed in to change notification settings - Fork 0
/
Palindrome Linked List
51 lines (45 loc) · 1.27 KB
/
Palindrome Linked List
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
234. Palindrome Linked List
Given the head of a singly linked list, return true if it is a palindrome or false otherwise.
Example 1:
Input: head = [1,2,2,1]
Output: true
Example 2:
Input: head = [1,2]
Output: false
class Solution {
public boolean isPalindrome(ListNode head) {
if(head == null || head.next == null)
return true;
ListNode mid = middleList(head);
ListNode secondHalf = reverse(mid.next);
ListNode firstHalf = head;
while(secondHalf != null){
if(firstHalf.val != secondHalf.val){
return false;
}
firstHalf = firstHalf.next;
secondHalf = secondHalf.next;
}
return true;
}
public ListNode middleList(ListNode head){
ListNode hare = head;
ListNode turtle = head;
while(hare.next != null && hare.next.next != null){
hare = hare.next.next;
turtle = turtle.next;
}
return turtle;
}
public ListNode reverse(ListNode head){
ListNode prev = null;
ListNode curr = head;
while(curr != null){
ListNode next = curr.next;
curr.next = prev;
prev = curr;
curr = next;
}
return prev;
}
}