輸入乙個複雜鍊錶(每個節點中有節點值,以及兩個指標,乙個指向下乙個節點,另乙個特殊指標指向任意乙個節點),返回結果為複製後複雜鍊錶的head。注意,輸出結果中請不要返回引數中的節點引用,否則判題程式會直接返回空)
# -*- coding:utf-8 -*-
# class randomlistnode:
# def __init__(self, x):
# self.label = x
# self.next = none
# self.random = none
class
solution:
# 返回 randomlistnode
defclone
(self, phead):
# write code here
head = phead # 將phead複製給head
p_head = none
new_head = none
random_dic = {} # node位址與node節點對
old_new_dic = {} # node,head位址對
while head:
node = randomlistnode(head.label) # 將head值複製給node
node.random = head.random # 將head.random複製給node.random
old_new_dic[id(head)] = id(node) #id()返回物件的記憶體位址,node,head位址對
random_dic[id(node)] = node # node位址與node節點對
head = head.next # head指向下乙個節點
if new_head: # 新節點存在,
new_head.next = node # 將新節點的下乙個節點指標指向node節點
new_head = new_head.next # 新節點指向它的下乙個節點
else: # 新節點不存在
new_head = node # 新節點指向最初的node節點
p_head = node # p_head指向最初的node節點,也就是head的頭節點
new_head = p_head # new_head指向p_head,也就是head,不過head.random為空
while new_head:
if new_head.random != none:
new_head.random = random_dic[old_new_dic[id(new_head.random)]] # new_head.random對應的node節點
new_head = new_head.next # new_head指標指向下乙個節點
return p_head
這個有點難理解,先mark一下。
鍊錶 複雜鍊錶的複製
問題描述 請實現函式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指標的節點,之後...