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

Leetcode-234. 回文链表

时间:2020-07-05 00:30:58      阅读:52      评论:0      收藏:0      [点我收藏+]

标签:时间   ems   空间   head   复杂度   next   lin   pre   com   

请判断一个链表是否为回文链表。

示例 1:

输入: 1->2
输出: false
示例 2:

输入: 1->2->2->1
输出: true
进阶:
你能否用 O(n) 时间复杂度和 O(1) 空间复杂度解决此题?

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/palindrome-linked-list
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

 

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    bool isPalindrome(ListNode* head) {
        bool ans = deduce(head);
        return ans;
    }
    bool deduce(ListNode* head)
    {
        vector<int> vec;
        vec.clear();
        
        while (head!= NULL)
        {
            vec.push_back(head->val);
            head = head->next;
        }
        
        int len = vec.size();
        for (int i = 0, j = len-1; i<=j; i++, j--) /*因为len可能是奇数,所以i<=j;*/
        {
            if (vec[i]!= vec[j]) return false;
        }
        return true;
    }
};

 

Leetcode-234. 回文链表

标签:时间   ems   空间   head   复杂度   next   lin   pre   com   

原文地址:https://www.cnblogs.com/Amaris-diana/p/13237090.html

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