fixed (修改剑指offer35,47,目录问题)

This commit is contained in:
Zerol
2020-07-18 17:04:57 +08:00
parent 1392056d73
commit 763979044a
3 changed files with 3 additions and 2 deletions

View File

@ -61,6 +61,7 @@ public RandomListNode Clone(RandomListNode pHead) {
RandomListNode next = cur.next;
cur.next = next.next;
cur = next;
next.next = cur.next;
}
return pCloneHead;
}