美文网首页
86. Partition List/分隔链表

86. Partition List/分隔链表

作者: 蜜糖_7474 | 来源:发表于2019-06-08 09:07 被阅读0次

Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.

You should preserve the original relative order of the nodes in each of the two partitions.

Example:

Input: head = 1->4->3->2->5->2, x = 3
Output: 1->2->2->4->3->5

AC代码

class Solution {
public:
    ListNode* partition(ListNode* head, int x) {
        if (!head || !(head->next)) return head;
        ListNode *pre = new ListNode(INT_MIN), *ret = pre, *cur = pre;
        pre->next = head;
        while (cur->next) {
            if (cur->next->val >= x)
                cur = cur->next;
            else {
                if (cur == pre) {
                    pre = pre->next;
                    cur = cur->next;
                }
                else {
                    ListNode* tmp = cur->next;
                    cur->next = tmp->next;
                    tmp->next = pre->next;
                    pre->next = tmp;
                    pre = pre->next;
                }
            }
        }
        return ret->next;
    }
};

总结

循规蹈矩的链表基本操作题

相关文章

网友评论

      本文标题:86. Partition List/分隔链表

      本文链接:https://www.haomeiwen.com/subject/rbgbxctx.html