实验名称:Warshall算法计算关系的传递闭包
源代码:
#include
using namespace std;
int add(int a,int b)
{if(a==0&&b==0)
return 0;
else if(a==0&&b==1||a==1&&b==0||a==1&&b==1)
return 1;
else cout<<"输入的矩阵有误"<n;
//矩阵的输入
cout<<"请输入R的关系矩阵M,且矩阵元素均为1或0:"<a[i][j];
//显示输入的矩阵
cout<<"输入的矩阵为:"<b;
if(b==0)
{cout<<"请重新输入矩阵M:"<闭包矩阵为:"<g;
return 0;
}
运行结果:
2021-11-27 17:05:43
1KB
传递闭包
1