how to copy a linkedlist

Copy link-list, If You Can

Make a seprate copy of a linked list that has an extra pointer than the regular ones. This pointer points to any randam  node in the list.i.e.::node structure is---
struct node
{
  type element
  node  *next;
  node  *other;
};
You are provided with head pointer
eg. *other pointer of first node can point to middle node and *other pointer of last node can point to frist node

I need not remind u to keep in mind the complexity..
Holy_Sin Send private email
Thursday, June 29, 2006
 
 

Yes, can be done in O(n) time and O(1) space, not counting input and output lists...

Here is come C like code..

// Edge case/error detection missing.
LL * Copy (LL *head){

  LL *tmp = head;
  LL *prev = NULL;
  LL *cur = NULL;

  LL *savedNext = NULL;

  // Interleave the new and old lists.
  while (tmp){

    cur = AllocNewLL();

    savedNext = tmp->next;

    tmp->next = cur;
    cur->next = savedNext;
   
    tmp = savedNext;
  }

  tmp = head;
 
  // Get the correct other pointers for the new list.
  while(tmp){

    cur = tmp->next;
    cur->other = tmp->other->next;
    tmp = cur->next;
  }
 
  LL * copiedList = head->next;

  // Restore the original list.
  while (tmp){

    cur = tmp->next;
    tmp->next = cur->next;
    tmp = cur->next;
  }

  return copiedList;

}

Basically, if original list was A1 -> A2 -> ... -> An

The we make a copy of node Ai. Call that node Bi.

We first make the list look like

A1 -> B1 -> A2 -> B2 -> ... -> An -> Bn (first while loop)

Now to get the correct other pointer of Bi, we take the other pointer of Ai, and get the next. i.e say the other of Ai is pointing to Aj. Then when we follow the next of Aj we get Bj which should be the other of Bi. (second while loop)

Now we restore the input list back to its form:
A1 -> A2 -> ...-> An. (third while loop)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值