码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode(234):Palindrome Linked List

时间:2016-01-14 20:36:40      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

Palindrome Linked List:Given a singly linked list, determine if it is a palindrome.

题意:判断给定的一个链表中数,是否为回文。

思路:参考http://www.bkjia.com/ASPjc/1031678.html中的解法,采用递归的方式进行判断。

代码:

private ListNode lst;
    
    public boolean judge(ListNode head){
        if(head == null) return true;
        if(judge(head.next)==false) return false;
        if(lst.val!=head.val) {
            return false;
            
        }else{
            lst=lst.next;
            return true;
        }
    }
    
    
    public boolean isPalindrome(ListNode head) {
        if(head==null||head.next==null) return true;
        lst = head;
        return judge(head);
    }

LeetCode(234):Palindrome Linked List

标签:

原文地址:http://www.cnblogs.com/Lewisr/p/5131483.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!