跳至主要內容

复杂链表的复制

微信公众号:储凡Less than 1 minute

复杂链表的复制

题目链接

题目描述

刷题思路

代码实现

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

一些建议