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

LeetCode 234 Palindrome Linked List(回文链表)(*)(?)

时间:2016-02-02 15:13:49      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:

翻译

给定一个单链表,确定它是否是回文的。

跟进:
你可以在O(n)时间和O(1)空间下完成它吗?

原文

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?

进阶

bool judge(ListNode *head, ListNode* &cur) {
    if (!head)
        return true;
    if (!judge(head->next, cur))
        return false;
    if (cur->val != head->val)
        return false;
    else {
        cur = cur->next;
        return true;
    }
}

bool isPalindrome(ListNode* head) {
    ListNode *cur = head;
    return judge(head, cur);
}

LeetCode 234 Palindrome Linked List(回文链表)(*)(?)

标签:

原文地址:http://blog.csdn.net/nomasp/article/details/50623201

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