• #Leetcode# 86. Partition List


    https://leetcode.com/problems/partition-list/

    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

    代码:

    /**
     * Definition for singly-linked list.
     * struct ListNode {
     *     int val;
     *     ListNode *next;
     *     ListNode(int x) : val(x), next(NULL) {}
     * };
     */
    class Solution {
    public:
        ListNode* partition(ListNode* head, int x) {
            ListNode *dummy = new ListNode(-1);
            ListNode *cur = dummy;
            ListNode *pre = head;
            while(pre) {
                if(pre -> val < x) {
                    ListNode *t = new ListNode(pre -> val);
                    //t -> val = pre -> val;
                    cur -> next = t;
                    cur = cur -> next;
                }
                pre = pre -> next;
            }
            while(head) {
                if(head -> val >= x) {
                    ListNode *c = new ListNode(head -> val);
                    cur -> next = c;
                    cur = cur -> next;
                }
                head = head -> next;
            }
            return dummy -> next;
        }
    };
    

      遍历两遍链表 暴躁 Be 主

     

  • 相关阅读:
    脚本添加crontab任务
    docker mysql8 注意
    使用 logrotate 清理日志
    腾讯云cos对象在线显示
    快速部署私人git服务--基于docker化Gogs
    grep 使用
    vsftpd 新增虚拟用户
    unistd.h
    ffmpeg
    H264视频压缩算法
  • 原文地址:https://www.cnblogs.com/zlrrrr/p/10406213.html
Copyright © 2020-2023  润新知