题解 | #复杂链表的复制# 先复制单向链表,再处理随机指针

复杂链表的复制

https://www.nowcoder.com/practice/f836b2c43afc4b35ad6adc41ec941dba

/*
struct RandomListNode {
    int label;
    struct RandomListNode *next, *random;
    RandomListNode(int x) :
            label(x), next(NULL), random(NULL) {
    }
};
*/
class Solution {
public:
    RandomListNode* Clone(RandomListNode* pHead) {
        RandomListNode *tmp = pHead, *res = nullptr;
        RandomListNode *path = nullptr;
        if(tmp != nullptr){
            res = new RandomListNode(tmp->label);
            tmp = tmp -> next;
            path = res;
        }else{
            return nullptr;
        }
        // 完成单向链表的拷贝
        while(tmp != nullptr){
            RandomListNode* tt = new RandomListNode(tmp->label);
            path->next = tt;
            path = path -> next;
            tmp = tmp -> next;
        }
        // 完成random指针的拷贝
        tmp = pHead;
        path = res;
        while(tmp != nullptr){
            if(tmp->random != nullptr){
                path -> random = new RandomListNode(tmp->random->label);
            }
            path = path->next;
            tmp = tmp -> next;
        }
        return res;
    }
};

全部评论

相关推荐

小红书 后端选手 n*16*1.18+签字费期权
点赞 评论 收藏
分享
11-14 16:13
已编辑
重庆科技大学 测试工程师
Amazarashi66:不进帖子我都知道🐮❤️网什么含金量
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务