×

Loading...

另COPY链表的算法

In Old, NEW;
...
COPY(...)
{
aNEW=new In;
aNew->next = currOldNode->next;
currOldNode->next = &aNew

}
Report