各位大佬,这是剑指offer:复杂链表的复制,为什么我的提交 对应输出应该为: {1,2,3,4,5,3,5,#,2,#} 你的输出为: {1,2,3,4,5,#,#,#,#,#}。 ,哪里出错了?这是源码: /* public class RandomListNode { int label; RandomListNode next = null; RandomListNode random = null; RandomListNode(int label) { this.label = label; } } */...