类同:剑指 Offer 题目汇总索引第26题 Copy List with Random Pointer A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null. Return a deep copy of the list. 说明:分三步, 1. 每个节点复制其本身并链接在后面. 2, 复制…