牛客——OR36 链表的回文结构(C语言,配图,快慢指针)

本题是没有对C的支持的,但因为Cpp支持C,所以这里就用C写了,可以面向更多用户

链表的回文结构_牛客题霸_牛客网 (nowcoder.com)

思路一:链表翻转

简单的想想整形我们怎么比较,就是将整形A 依次取尾,放到整形B中。

cpp 复制代码
int a = 121;
int t = a;
int b = 0;
while(t)
{
    int temp = t % 10;
    b = b*10+temp;
    t /= 10;
}
if(b == a)
{
    printf("Yes");
}

这里我们也借用这个思路,先遍历一遍链表,取出每个节点的val,放到整形A中,在将链表翻转,再次取出每个节点的val,放到整形B中,进行比较。

cpp 复制代码
struct ListNode {
    int val;
    struct ListNode *next;
    ListNode(int x) : val(x), next(NULL) {}
};
class PalindromeList {
public:
    bool chkPalindrome(ListNode* A) {
        // write code here
        int ret1 = 0;   //原链表
        int ret2 = 0;
        struct ListNode* n1 = NULL;
        struct ListNode* n2 = A;
        struct ListNode* n3 = A->next;
        while(n2)
        {
            ret1 = ret1 * 10 + n2->val;
            n2->next = n1;
            n1 = n2;
            n2 = n3;
            n3 = n3->next;
        }
        while(n1)
        {
            ret2 =ret2* 10 + n1->val;
            n1 = n1->next;
        }
        if(ret1 == ret2)
        {
            return true;
        }
        return false;
    }
};

思路二:快慢指针,分别从头和尾间开始比较

这里的思路,是在思路一的基础上,在进了一步,让链表从中间到尾进行翻转,进行比较。

cpp 复制代码
struct ListNode {
    int val;
    struct ListNode *next;
    ListNode(int x) : val(x), next(NULL) {}
};
class PalindromeList {
public:
    //找出中间节点
    ListNode* MiddleList(ListNode* phead)
    {
        ListNode* fast = phead;
        ListNode* slow = phead;
        while(fast && fast->next)
        {
            fast = fast->next->next;
            slow=slow->next;
        }
        return slow;
    }
    //将中间节点到尾节点逆置
    ListNode* ReverseList(ListNode* phead)
    {
        ListNode* n1 = NULL;
        ListNode* n2 = phead;
        ListNode* n3 = phead->next;
        while(n2)
        {
            n2->next = n1;
            n1 =n2;
            n2 =n3;
            n3 = n3->next;
        }
        return n1;
    }
    bool chkPalindrome(ListNode* phead) {
        // write code here
        ListNode* mid = MiddleList(phead);
        ListNode* rev = ReverseList(phead);
        ListNode* cur =phead;
        while(cur && rev)
        {
            if(cur->val != rev->val)
            {
                return false;
            }
            cur =cur->next;
            rev =rev->next;
        }
        return true;
    }
};
相关推荐
不見星空9 分钟前
leetcode 每日一题 1865. 找出和为指定值的下标对
算法·leetcode
我爱Jack19 分钟前
时间与空间复杂度详解:算法效率的度量衡
java·开发语言·算法
☆璇41 分钟前
【数据结构】栈和队列
c语言·数据结构
DoraBigHead2 小时前
小哆啦解题记——映射的背叛
算法
Heartoxx2 小时前
c语言-指针与一维数组
c语言·开发语言·算法
孤狼warrior2 小时前
灰色预测模型
人工智能·python·算法·数学建模
京东云开发者2 小时前
京东零售基于国产芯片的AI引擎技术
算法
chao_7894 小时前
回溯题解——子集【LeetCode】二进制枚举法
开发语言·数据结构·python·算法·leetcode
十盒半价4 小时前
从递归到动态规划:手把手教你玩转算法三剑客
javascript·算法·trae
GEEK零零七4 小时前
Leetcode 1070. 产品销售分析 III
sql·算法·leetcode