問題:
請實現乙個函式,複製乙個複雜鍊錶,在複雜鍊錶中,每個節點除了有乙個指向下乙個節點的指標,還有乙個指向該鍊錶的任意節點的指標,或者該指標指向null。
複製該鍊錶分為三步:
1.複製原始鍊錶的任意節點,n並建立乙個新的節點n』,在把節點連線到n的後面,
2.原始鍊錶上的節點n的sibling指標指向s則,對應的複製節點的n』的silbing指標指向s的複製節點s』
執行完上面兩步,原煉表如圖;
3.將原鍊錶和複製的鍊錶分離
**實現:
/*
實現複雜鍊錶的複製
*///定義複雜鍊錶的節點
typedef struct nodeelemsn;
//建立複雜鍊錶
elemsn* createconfuselink(char data, int len)
else
}//複雜鍊錶構建
head->slibing = head->next->next;
head->next->next->next->slibing = head->next;
head->next->slibing = head->next->next->next->next;
return head;
}void printlink(elemsn *head)
else}}
複雜鍊錶的複製
void clonenodes(elemsn *head)
}void connectslibingnodes(elemsn *head)
p = pc->next;
}}elemsn* reconnectnode(elemsn *head)
while (p)
return pch;
}
測試:
int main(void)
除錯結果
鍊錶 複雜鍊錶的複製
問題描述 請實現函式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指標的節點,之後...