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
|
class Solution { public ListNode reverse01(ListNode head){ ListNode next=null; ListNode pre=null; while(head!=null){ next=head.next; head.next=pre; pre=head; head=next; } return pre; } public boolean isPalindrome(ListNode head) { if(head==null) return true; ListNode dataNode=head; ListNode headNode=head; while(head.next!=null&&head.next.next!=null){ dataNode=dataNode.next; head=head.next.next; } dataNode=reverse01(dataNode.next); while(dataNode!=null){ if(headNode.val!=dataNode.val) return false; headNode=headNode.next; dataNode=dataNode.next; } return true; } }
public class Solution{ ListNode tmp; public boolean isPalindrome(ListNode head) { tmp=head; return isPalindromeTrue(head); }
public boolean isPalindromeTrue(ListNode head){ if(head==null) return true; boolean result=isPalindromeTrue(head.next)&(tmp.val==head.val); tmp=tmp.next; return result; } } }
|