題目:輸入乙個複雜鍊錶(每個節點中有節點值,以及兩個指標,乙個指向下乙個節點,另乙個特殊指標指向任意乙個節點),返回結果為複製後複雜鍊錶的head。(注意,輸出結果中請不要返回引數中的節點引用,否則判題程式會直接返回空
思路:1.在第乙個煉表裡複製節點
2.複製隨機的特殊指標
3.將節點分離
如圖所示 :
class listnode:
def __init__(self, x):
self.val = x
self.next = none
self.random = none
class solution:
def clone(self, phead):
if phead == none: ###若phead 為空時。返回空
return none
pcur = phead ##宣告乙個節點 用來表示轉殖的節點
##用來複製節點
while pcur != none:
node = listnode(pcur.val)
node.next = pcur.next
pcur.next = node
pcur = node.next
##用來將複製的節點與其隨機指標連線
pcur = phead
while pcur!= none:
if pcur.random != none:
pcur.next.random = pcur.random.next
pcur = pcur.next.next
# 將新舊鍊錶分離
head = phead.next ##head 是轉殖鍊錶的頭節點
cur = head ## cur 是表示轉殖節點 用來跑迴圈的
##pcur 是用來標記原鍊錶
##cur 用來標記轉殖節點
pcur = phead
while (pcur != none):
pcur.next = pcur.next.next
if cur.next != none:
cur.next = cur.next.next
cur = cur.next
pcur = pcur.next
return head
鍊錶 複雜鍊錶的複製
問題描述 請實現函式complexlistnode clone complexlistnode phead 複製乙個複雜鍊錶。在複雜鍊錶中,每個結點除了有乙個next指標指向下乙個結點之外,還有乙個random指向鍊錶中的任意結點或者null。結點的定義如下 struct randomlistnod...
35 複雜鍊錶的複製 python
題目 請實現乙個函式,複製乙個複雜鍊錶。在複雜鍊錶中,每個節點除了有乙個m pnext指標指向下乙個節點,還有乙個m psibling指標指向鍊錶中的任意節點或者nullptr。def complex list clone head node node if not head return none...
複雜鍊錶的複製 python編寫
題目描述 輸入乙個複雜鍊錶 每個節點中有節點值,以及兩個指標,乙個指向下乙個節點,另乙個特殊指標指向任意乙個節點 返回結果為複製後複雜鍊錶的head。注意,輸出結果中請不要返回引數中的節點引用,否則判題程式會直接返回空 題目分析 1.如果鍊錶為空鍊錶,則返回本身即可 2.如果非空 需要進行複製操作,...