本文准备讲解1个算法编程问题, 这个算法编程问题来自LintCode平台。不了解.LintCode平台的读者可以阅读笔者文章(在线编程平台推荐-LeetCode)。问题的英文版本描述如下:
Random Pointer
Each node contains an additional random pointer which could point to any node in the list or null.
Return a deep copy of the list.
介绍1种高效的算法。
高效的算法
网友评论