複雜鍊錶的複製

2021-07-29 15:48:20 字數 1259 閱讀 4067

題目:實現乙個函式複製複雜鍊錶,在複雜鍊錶中,每個節點除了有乙個next指標指向下乙個節點之外,還有乙個sibling指向鍊錶中的任意節點或者null。

solution1:先重建有next指標連線的原始鍊錶,再對重建後的鍊錶建立sibling指標的建立。尋找每個節點的slibing指向的節點都是從頭節點開始遍歷單鏈表直到找到為止,每個節點的尋找時間複雜度是o(n),因此,該方法的時間複雜度是o(n2)。

solution2:第一步:根據原始鍊錶的每個節點n建立對應的節點n『,並把n『連線在n的後面。

void clonenodes(complexlistnode * head)

if(head==null)

return;

complexlistnode * pnode=head;

while(pnode!=null)

第二步:原始鍊錶中每個節點的slibling連線的節點s,在新的鍊錶中與之對應的s'即是s的後面乙個節點。這樣就很容易找到s『並在新的鍊錶中建立它.

void connectsliblingnode(complexlistnode * head)

if(head==null)

return;

complexlistnode * pnode=head;

while(pnode!=null)

pnode=pclonenode->next;}}

第三步:將上面兩步中建立的鍊錶分開,單數節點與偶數節點分開,單數節點組成的鍊錶是原始鍊錶,偶數節點組成的鍊錶是新的鍊錶。

complexlistnode * reconnectnodes(complexlistnode * head)

if(head==null)

return;

complexlistnode * clonenodehead=head->next;

complexlistnode *

pnode=head;

complexlistnode *

pclonenode=head->next;

while(pnode!=null&&pclonenode!=null)

return clonenodehead;

最後把前三步合起來,就是整個複雜鍊錶的複製過程。

complexlistnode * clone(complexlistnode * head)

clonenodes(head);

connectsliblingnode(head);

reconnectnodes(head);

鍊錶 複雜鍊錶的複製

問題描述 請實現函式complexlistnode clone complexlistnode phead 複製乙個複雜鍊錶。在複雜鍊錶中,每個結點除了有乙個next指標指向下乙個結點之外,還有乙個random指向鍊錶中的任意結點或者null。結點的定義如下 struct randomlistnod...

複雜鍊錶複製

複雜鍊錶複製的標頭檔案mlist.h ifndef mlist h define mlist h include include includetypedef int datatype typedef struct node node,pnode,plist pnode crealist datat...

複製複雜鍊錶

題目 輸入乙個複雜鍊錶 每個節點中有節點值,以及兩個指標,乙個指向下乙個節點,另乙個特殊指標指向任意乙個節點 返回結果為複製後複雜鍊錶的head。注意,輸出結果中請不要返回引數中的節點引用,否則判題程式會直接返回空 解題思路 首先有三種解法 第一種就是中規中矩的解法,首先複製next指標的節點,之後...