打开主菜单
首页
随机
登录
设置
关于wrc's Wiki
免责声明
wrc's Wiki
搜索
更改
←上一编辑
Union find
(查看源代码)
2021年11月2日 (二) 19:54的版本
添加164字节
、
2021年11月2日 (二) 19:54
→查询
第24行:
第24行:
repres[x] = find_repre(repres[x])
repres[x] = find_repre(repres[x])
return repres[x]
return repres[x]
+
</syntaxhighlight>
+
+
简化为
+
<syntaxhighlight lang=python>
+
def find_repr(x):
+
if repres[x] != x:
+
repres[x] = find_repre(repres[x])
+
return repres[x]
</syntaxhighlight>
</syntaxhighlight>
Weirane
行政员
、
管理员
528
个编辑