代码拉取完成,页面将自动刷新
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;
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。