CM11 链表分割

发布时间:2024年01月22日

链表分割_牛客题霸_牛客网 (nowcoder.com)

一、思路分析

二、源码


一、思路分析

创建两个链表small、big

遍历原来链表

比X小的节点尾插到small

比X大的节点尾插到big

最后来链接起来

这样不会改变各个节点的相对顺序

二、源码

ListNode* partition(ListNode* pHead, int x) {
    // write code here
    struct ListNode* smallhead = NULL, * bighead = NULL;
    struct ListNode* samlltail = NULL, * bigtail = NULL;
    struct ListNode* cur = pHead;
    while (cur) {
        if (cur->val > x)
        {
            if (bighead == NULL)
            {
                bighead = bigtail = cur;
            }
            else
            {
                bigtail->next = cur;
                bigtail = bigtail->next;
            }
        }
        else
        {
            if (smallhead == NULL)
            {
                smallhead = samlltail = cur;
            }
            else
            {
                samlltail->next = cur;
                samlltail = samlltail->next;
            }
        }
        cur = cur->next;
    }
    bigtail->next = NULL;
    samlltail->next = bighead;
    return smallhead;
}

文章来源:https://blog.csdn.net/qq_51216031/article/details/135746904
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。