码迷,mamicode.com
首页 > 其他好文 > 详细

面试题35:复杂链表的复制

时间:2019-08-11 23:08:04      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:highlight   label   nod   试题   lis   node   http   turn   ima   

技术图片

# -*- coding:utf-8 -*-
# class RandomListNode:
#     def __init__(self, x):
#         self.label = x
#         self.next = None
#         self.random = None
class Solution:
    # 返回 RandomListNode
    def Clone(self, pHead):
        # write code here
        import copy
        newHead = copy.deepcopy(pHead)
        return newHead

  

面试题35:复杂链表的复制

标签:highlight   label   nod   试题   lis   node   http   turn   ima   

原文地址:https://www.cnblogs.com/ivyharding/p/11337093.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!