輸入乙個複雜鍊錶(每個節點中有節點值,以及兩個指標,乙個指向下乙個節點,另乙個特殊指標指向任意乙個節點),返回結果為複製後複雜鍊錶的head。(注意,輸出結果中請不要返回引數中的節點引用,否則判題程式會直接返回空)
分析:分為三步驟:
1)複製每個節點,如複製a得到a1,並將a1插入到a的後面
2)重新遍歷鍊錶,複製老節點的指標給新節點
3)拆分鍊錶,將鍊錶拆分為原鍊錶和複製後的鍊錶
**實現:
public class solution
randomlistnode currentnode = phead;
// 1、複製每個結點,如複製結點a得到a1,將結點a1插到結點a後面;
while(currentnode!=null)
currentnode = phead;
// 2、重新遍歷鍊錶,複製老結點的隨機指標給新結點,如a1.random = a.random.next;
while(currentnode!=null)
// 3、拆分鍊錶,將鍊錶拆分為原鍊錶和複製後的鍊錶
randomlistnode pcur;
randomlistnode cur;
randomlistnode head;
pcur = phead;
cur = head = phead.next;
while(pcur!=null)
pcur = pcur.next;
cur = cur.next;
}return head;
}}
說明:while(pcur!=null)
pcur = pcur.next;
cur = cur.next;
}
對這幾行**的說明:
1)複製random指標時:
複製的節點的random指標的值是被複製節點的random指標指向節點的下乙個節點。
p.random = currentnode.random.next;
2)拆分節點時:
pcur.next = pcur.next.next,這裡不用考慮pcur.next是不是為null,因為複製完後是成對出現的,所以pcur後面的一定不為null,但是cur.next就不一定了,所以要加上判讀if(cur.next!=null)來進行判別。
參考:牛客網通過**
鍊錶 複雜鍊錶的複製
問題描述 請實現函式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指標的節點,之後...