複雜鍊錶的複製

2021-09-27 06:03:58 字數 815 閱讀 1043

收穫很多的一道題,最初看到這道題我能想到的最好的演算法就是用雜湊表存下每乙個特殊指標。書上給的演算法真是巧妙,理解了之後實現起來也很簡單。

#include #include #include #include #include using namespace std;

struct randomlistnode

};// 列印複雜鍊錶

void printrandomlist(randomlistnode* phead)

}//複製複雜鍊錶

randomlistnode* clone(randomlistnode* phead)

//printrandomlist(phead);

pnode = phead;

while(pnode != nullptr)

//printrandomlist(phead);

pnode = phead;

randomlistnode* phead_ = new randomlistnode(10);

randomlistnode* pnode_ = phead_;

while(pnode != nullptr)

pnode = phead_;

phead_ = phead_->next;

delete pnode;

//printrandomlist(phead);

return phead_;

}int main()

//列印

printrandomlist(clone(phead));

}

鍊錶 複雜鍊錶的複製

問題描述 請實現函式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指標的節點,之後...