forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_234.java
90 lines (80 loc) · 2.38 KB
/
_234.java
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package com.fishercoder.solutions;
import com.fishercoder.common.classes.ListNode;
import java.util.ArrayList;
import java.util.List;
/**
* 234. Palindrome Linked List
*
* Given a singly linked list, determine if it is a palindrome.
Follow up:
Could you do it in O(n) time and O(1) space?
*/
public class _234 {
public static class Solution1 {
/**O(n) time
* O(1) space
* */
public boolean isPalindrome(ListNode head) {
if (head == null) {
return true;
}
ListNode slow = head;
ListNode fast = head;
while (fast.next != null && fast.next.next != null) {
fast = fast.next.next;
slow = slow.next;
}
ListNode reversedHead = reverse(slow.next);
ListNode firstHalfHead = head;
while (firstHalfHead != null && reversedHead != null) {
if (firstHalfHead.val != reversedHead.val) {
return false;
}
firstHalfHead = firstHalfHead.next;
reversedHead = reversedHead.next;
}
return true;
}
private ListNode reverse(ListNode head) {
ListNode pre = null;
while (head != null) {
ListNode next = head.next;
head.next = pre;
pre = head;
head = next;
}
return pre;
}
}
public static class Solution2 {
/**O(n) time
* O(n) space
* */
public boolean isPalindrome(ListNode head) {
int len = 0;
ListNode fast = head;
ListNode slow = head;
List<Integer> firstHalf = new ArrayList<>();
while (fast != null && fast.next != null) {
fast = fast.next.next;
firstHalf.add(slow.val);
slow = slow.next;
len += 2;
}
if (fast != null) {
len++;
}
if (len % 2 != 0) {
slow = slow.next;
}
int i = firstHalf.size() - 1;
while (slow != null) {
if (firstHalf.get(i--) != slow.val) {
return false;
}
slow = slow.next;
}
return true;
}
}
}