【leetcode】138. 随机链表的复制
发布时间:2024年01月23日
leetcode题目链接 138. 随机链表的复制
typedef struct Node Node;
Node* copyRandomList(Node* head) {
if (head != NULL) {
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;
}
for (Node* cur = head; cur != NULL; cur=cur->next->next) {
Node* newnode = cur->next;
newnode->random = cur->random ? cur->random->next : NULL;
}
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
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:chenni525@qq.com进行投诉反馈,一经查实,立即删除!