回文数链表(判断一个链表是不是回文数)

/*
struct ListNode {
    int val;
    struct ListNode *next;
    ListNode(int x) : val(x), next(NULL) {}
};*/


class PalindromeList {
public:
    //逆置函数,用来逆置链表
    ListNode* reverseList(ListNode* head)
    {
        ListNode* cur = head;
        ListNode* next = NULL;
        ListNode* prev = NULL;
        
        while(cur)
        {
            next = cur->next;
            cur->next = prev;
            prev = cur;
            cur = next;
        }
        return prev;
    }
    
    bool chkPalindrome(ListNode* A) {
        //去除特殊情况,个位数以及链表不存在
        if(A == NULL ||A->next == NULL)
            return true;
        //方法一:利用数组来求解,将所有链表中的数放到数组中,然后遍历
        int arr[900] = {0};
        
        //i值表示链表的长度,即链表的个数

        int i = 0;
        ListNode* cur = A;
        while(cur)
        {
            //遍历链表
            arr[i++] = cur->val;
            cur = cur->next;
            
        }
        
        //遍历数组,进行对比
        int left = 0;
        int right = i - 1;
        while(left < right)
        {
            //如果数组的两个数不一样,直接返回false
            if(arr[left++] != arr[right--])
                return false;
        }
        return true;
    
        
        
        //方法二:分三步走
                //一.遍历链表,找到中间的节点
                //二.将后slow链表进行翻转
                //三.cur1链表和cur2链表进行比较
        
        //一.遍历链表,找到中间的节点

        ListNode* fast = A;
        ListNode* slow = A;
        ListNode* preslow = NULL;
 
        //快慢指针来求出链表的中间值       
        while(fast && fast->next)
        {
            fast = fast->next->next;
            preslow = slow;
            slow = slow->next;
        }
        
        //将分开的两个链表第一个最后置为空
        preslow->next = NULL;
        
        //二.将后slow链表进行翻转,reverseList函数搞定
        ListNode* cur2 = reverseList(slow);
        ListNode* cur1 = A;
        
        //三.cur1链表和cur2链表进行比较
       while(cur1 && cur2)
       {
           if(cur1->val != cur2->val)
               return false;
           cur1 = cur1->next;
           cur2 = cur2->next;
       }
       return true;
    }
};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值