function RandomListNode(x) { this.label = x this.next = null this.random = null } function Clone(pHead) { }