Leetcode 234. Palindrome Linked List(判断是否为回文链表)

Palindrome Linked List
Given a singly linked list, determine if it is a palindrome.
Example 1:
Input: 1->2
Output: false
Example 2:
Input: 1->2->2->1
Output: true
  • 快慢指针找到中间节点(找的是偶数靠前的中间节点,以及奇数的中间节点)
    (奇数:fast.next!=null 偶数:fast.next.next!=null)
  • 翻转后面的节点(翻转链表函数 递归迭代)
  • 两个链表逐个比较
/**
 * 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) {
        if(head==null||head.next==null){
            return true;
        }
        ListNode fast=head;
        ListNode slow=head;
        while(fast.next!=null&&fast.next.next!=null){ //找中间节点
        //奇数:fast.next!=null 偶数:fast.next.next!=null
        //要找哪个slow节点 就找对应的fast节点的临界位置,见下边的描述
            fast=fast.next.next;
            slow=slow.next;
            if(fast==slow){
                break;
            }
        }
        ListNode newhead=reverse(slow.next);
        slow.next=null;
        while(newhead!=null&&head!=null){
            if(newhead.val!=head.val){
                return false;
            }
            newhead=newhead.next;
            head=head.next;
        }
        return true;
    }
    //翻转链表
    ListNode reverse(ListNode head){
        if(head==null||head.next==null){
            return head;
        }
        ListNode pre=null;
        ListNode cur=head;
        while(cur!=null){
            ListNode tmp=cur.next;
            cur.next=pre;
            pre=cur;
            cur=tmp;
        }
        return pre;
    }
}
//迭代法翻转链表
    ListNode reverse(ListNode head){
        if(head==null||head.next==null){
            return head;
        }
        ListNode newhead=reverse(head.next);
        newhead.next =head;
        head.next=null;
        return newhead;
    }

6、快慢指针的slow节点的位置问题

  • 如果链表长度为奇数,当 fast.next = null 时,slow 为中间结点 在这里插入图片描述

  • 如果链表长度为偶数,当 fast = null 时,slow 为中间结点,fast.next.next=null的时候是slow(偶数中间的前一个节点)
    在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值