/* struct RandomListNode { int label; struct RandomListNode *next, *random; RandomListNode(int x) : label(x), next(NULL), random(NULL) { } }; */ #include <cstddef> #include <unordered_map> class Solution { public: RandomListNode* Clone(RandomListNode* pHea...