题解 | #链表分割#

链表分割

https://www.nowcoder.com/practice/0e27e0b064de4eacac178676ef9c9d70

/*
struct ListNode {
    int val;
    struct ListNode *next;
    ListNode(int x) : val(x), next(NULL) {}
};*/
class Partition {
  public:
    ListNode* partition(ListNode* pHead, int x) {
        ListNode* gGuard, *gTail, *lGuard, *lTail;
        gGuard = gTail = (ListNode*)malloc(sizeof(ListNode));
        lGuard = lTail = (ListNode*)malloc(sizeof(ListNode));
        gGuard->next=gTail->next=lGuard->next=lTail->next=nullptr;
        ListNode* cur = pHead;
        while (cur) 
        {
            if (cur->val < x) 
            {
                lTail->next = cur;
                lTail = lTail->next;
            }else 
            {
                gTail->next = cur;
                gTail = gTail->next;
            }
            cur = cur->next;
        }
        gTail->next=nullptr;
        lTail->next = gGuard->next;
        pHead=lGuard->next;
        //free(gGuard);
        //free(lGuard);
        return pHead;
    }
};

全部评论

相关推荐

头像
11-18 16:08
福州大学 Java
影流之主:干10年不被裁,我就能拿别人一年的钱了,日子有盼头了
点赞 评论 收藏
分享
11-08 13:58
门头沟学院 Java
程序员小白条:竟然是蓝桥杯人才doge,还要花钱申领的offer,这么好的公司哪里去找
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务