标签:
对一个无向图进行复制,图中的每一个节点都有自己的标签和自己相邻节点的列表。
注意点:
例子:
输入:
1
/ / 0 --- 2
/ \_/
输出:
1
/ / 0 --- 2
/ \_/
因为图中可能存在环,所以直接将节点和它的相邻节点进行复制,并对它的相邻节点进行相同操作可能会进入死循环。为了避免循环访问,要对已经复制过的节点进行缓存,我们通过一个由标志和节点组成的字典来记录已经访问过的节点。当我们通过相邻关系来访问一个节点时,如果它是第一次被访问,则要将其加入一个栈中,在栈中的元素表示要继续访问它相邻的元素,并记录它已经被访问过,同时要跟新已经被访问过的节点中与其相邻的节点的邻居列表。当栈为空时,表示所有的节点都已经访问完毕,图也复制成功。
# Definition for a undirected graph node
class UndirectedGraphNode(object):
def __init__(self, x):
self.label = x
self.neighbors = []
class Solution(object):
def cloneGraph(self, node):
"""
:type node: UndirectedGraphNode
:rtype: UndirectedGraphNode
"""
if not node:
return node
visited = {}
first = UndirectedGraphNode(node.label)
visited[node.label] = first
stack = [node]
while stack:
top = stack.pop()
for n in top.neighbors:
if n.label not in visited:
visited[n.label] = UndirectedGraphNode(n.label)
stack.append(n)
visited[top.label].neighbors.append(visited[n.label])
return first
if __name__ == "__main__":
None
欢迎查看我的Github (https://github.com/gavinfish/LeetCode-Python) 来获得相关源码。
标签:
原文地址:http://blog.csdn.net/u013291394/article/details/51254404