您的位置:首页 > 运维架构

copy-list-with-random-pointer

2016-03-14 13:56 309 查看
题目:

A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.

Return a deep copy of the list.

/**
* Definition for singly-linked list with a random pointer.
* struct RandomListNode {
*     int label;
*     RandomListNode *next, *random;
*     RandomListNode(int x) : label(x), next(NULL), random(NULL) {}
* };
*/
class Solution
{
public:
RandomListNode *copyRandomList(RandomListNode *head)
{

for (RandomListNode* cur = head; cur != NULL;)
{
RandomListNode* node = new  RandomListNode(cur->label);

node->next = cur->next;
cur->next = node;
cur = node-> next;

}

for (RandomListNode* cur = head; cur != NULL;)
{
if (cur->random != NULL)
{
cur->next->random = cur->random->next;
}
cur = cur->next->next;
}

// 拆链表
RandomListNode dummy(-1);
for (RandomListNode* cur = head, *new_cur = &dummy; cur != NULL;)
{
new_cur->next = cur->next;
new_cur = new_cur->next;
cur->next = cur->next->next;
cur = cur->next;
}

return dummy.next;
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: