【leetcode】138. 随机链表的复制

发布时间:2024年01月23日

leetcode题目链接 138. 随机链表的复制
在这里插入图片描述

/**
 * Definition for a Node.
 * struct Node {
 *     int val;
 *     struct Node *next;
 *     struct Node *random;
 * };
 */
typedef struct Node Node;
Node* copyRandomList(Node* head) {
    if (head != NULL) {
        // 1.在cur后面copy一份cur
        for (Node* cur = head; cur != NULL; cur=cur->next->next) {
            Node* newnode = (Node*)malloc(sizeof(Node));
            newnode->val = cur->val;
            newnode->next = cur->next;
            cur->next = newnode;
        }
        // 2.将每个copy的节点的random指针补充完整
        for (Node* cur = head; cur != NULL; cur=cur->next->next) {
            Node* newnode = cur->next;
            newnode->random = cur->random ? cur->random->next : NULL;
        }
        // 3.将copy的节点依次取下
        Node* newhead = head->next;
        for (Node* cur = head; cur != NULL; cur = cur->next) {
            Node* newnode = cur->next;
            cur->next = cur->next->next;
            newnode->next = newnode->next ? newnode->next->next : NULL;
        }
        return newhead;
    }
    return NULL;
}
文章来源:https://blog.csdn.net/m0_52602233/article/details/135670449
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。