Skip to content

Commit 64fb742

Browse files
author
Ziming M
committed
original commit
1 parent ecadc77 commit 64fb742

File tree

2 files changed

+66
-0
lines changed

2 files changed

+66
-0
lines changed
+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# 给定从 0 到 n-1 标号的 n 个结点,和一个无向边列表(每条边以结点对来表示),请编写一个函数用来判断这些边是否能够形成一个合法有效的树结构。
2+
#
3+
# 示例 1:
4+
#
5+
# 输入: n = 5, 边列表 edges = [[0,1], [0,2], [0,3], [1,4]]
6+
# 输出: true
7+
# 示例 2:
8+
#
9+
# 输入: n = 5, 边列表 edges = [[0,1], [1,2], [2,3], [1,3], [1,4]]
10+
# 输出: false
11+
# 注意:你可以假定边列表 edges 中不会出现重复的边。由于所有的边是无向边,边 [0,1] 和边 [1,0] 是相同的,因此不会同时出现在边列表 edges 中。
12+
13+
class Solution:
14+
def validTree(self, n: int, edges: List[List[int]]) -> bool:
15+
f = {}
16+
17+
def find(x):
18+
f.setdefault(x, x)
19+
if x != f[x]:
20+
f[x] = find(f[x])
21+
return f[x]
22+
23+
def union(x, y):
24+
f[find(x)] = find(y)
25+
26+
for x, y in edges:
27+
tmp1 = find(x)
28+
tmp2 = find(y)
29+
if tmp1 == tmp2:
30+
return False
31+
union(x, y)
32+
return len(set(find(x) for x in range(n))) == 1
33+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# 给定从 0 到 n-1 标号的 n 个结点,和一个无向边列表(每条边以结点对来表示),请编写一个函数用来判断这些边是否能够形成一个合法有效的树结构。
2+
#
3+
# 示例 1:
4+
#
5+
# 输入: n = 5, 边列表 edges = [[0,1], [0,2], [0,3], [1,4]]
6+
# 输出: true
7+
# 示例 2:
8+
#
9+
# 输入: n = 5, 边列表 edges = [[0,1], [1,2], [2,3], [1,3], [1,4]]
10+
# 输出: false
11+
# 注意:你可以假定边列表 edges 中不会出现重复的边。由于所有的边是无向边,边 [0,1] 和边 [1,0] 是相同的,因此不会同时出现在边列表 edges 中。
12+
13+
class Solution:
14+
def validTree(self, n: int, edges: List[List[int]]) -> bool:
15+
f = {}
16+
17+
def find(x):
18+
f.setdefault(x, x)
19+
if x != f[x]:
20+
f[x] = find(f[x])
21+
return f[x]
22+
23+
def union(x, y):
24+
f[find(x)] = find(y)
25+
26+
for x, y in edges:
27+
tmp1 = find(x)
28+
tmp2 = find(y)
29+
if tmp1 == tmp2:
30+
return False
31+
union(x, y)
32+
return len(set(find(x) for x in range(n))) == 1
33+

0 commit comments

Comments
 (0)