輸入乙個複雜鍊錶(每個節點中有節點值,以及兩個指標,乙個指向下乙個節點,另乙個特殊指標指向任意乙個節點),返回結果為複製後複雜鍊錶的head。下面看一看時間複雜度為o(n)的複雜鍊錶複製演算法。
假如被複製的鍊錶:
思路:分3步;
1、將複製的節點插入到對應節點的後面,形成乙個新的鍊錶。
2、複製隨機節點,通過原節點找到隨機節點的位置
3、拆分鍊錶,將原鍊錶與新鍊錶進行拆分
最終複製成功,**如下:
public class solution
//複製並且插入
randomlistnode p = phead;
while (p != null)
//複製random指標
p = phead;
while (p != null)
p = p.next.next;
}//拆分鍊錶
randomlistnode head = phead.next;
randomlistnode q = head;
p = phead;
while (q.next != null)
p.next = null; //最後將原來鍊錶的尾部設定為null
return 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指標的節點,之後...