并查集,检测图中是否有环

在这里插入图片描述

def find_root(x, parent):
    x_root = x
    while parent[x_root] != -1:
        x_root = parent[x_root]
    # 如果是不等于-1一直往上找,如果刚开始不是-1,就返回它自己
    return x_root


def union_vertices(x, y, parent):
    x_root = find_root(x, parent)
    y_root = find_root(y, parent)
    if x_root == y_root:
        return 0
    else:
        parent[x_root] = y_root
        return 1


n = int(input()) # n是矩阵维度
arr = []
for i in range(n):
    ss = list(map(int, input().split(' ')))
    arr.append(ss)

edges = []
for i in range(n):
    for j in range(n):
        if arr[i][j] == 1:
            edge = [i, j]
            edges.append(edge)
print(edges)
parent = [-1] * n

find = False
for i in range(0, len(edges)):
    x = edges[i][0]
    y = edges[i][1]
    if union_vertices(x, y, parent) == 0:
        find = True
        break
if find == True:
    print("Cycle detected!\n")
else:
    print("No cycles found.")
'''
3
0 0 1
1 0 0
0 1 0
[[0, 2], [1, 0], [2, 1]]
Cycle detected!
'''
#include <stdio.h>
#include <cstdlib>
#define VERTICES 6
void initialise(int parent[]){
    int i;
    for(i=0; i<VERTICES; i++){
        parent[i] = -1;
    }
}
int find_root(int x, int parent[]){
    int x_root = x;
    while (parent[x_root] != -1){
        x_root = parent[x_root];
    }
    return x_root;
}
/* 1 - union successfully, 0 - failed */
int union_vertices(int x, int y, int parent[]){
    int x_root = find_root(x, parent);
    int y_root = find_root(y, parent);
    if(x_root == y_root){
        return 0;
    }
    else{
        parent[x_root] = y_root;
        return 1;
    }
}
int main(void) { 
    int parent[VERTICES] = {0};
    int edges[6][5] = {
        {0,1},{1,2},{1,3},
        {2,4},{3,4},{2,5}
    };
    initialise(parent);
    int i;
    for (i=0;i<6;i++){
        int x = edges[i][0];
        int y = edges[i][1];
        if(union_vertices(x,y,parent)==0){
            printf("Cycle detected!\n");
            exit(0);
        }
    }
	printf("No cycles found.\n");
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值