根据顶点边数和点信息输出邻接矩阵
【摘要】
// ConsoleApplication23.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//
#include <iostream> ...
// ConsoleApplication23.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//
#include <iostream>
#include<malloc.h>
using namespace std;
#define MAXVEX 100
typedef char VertexType;
typedef int EdgeType;
typedef struct
{
VertexType vexs[MAXVEX];
EdgeType edges[MAXVEX][MAXVEX];
int n, e;
}MGraph;
MGraph CreateMGraph(int pd)
{
MGraph G;
int i, j, k, n;
cout << "请输入顶点数和边数:";
cin >> G.n >> G.e;
cout << "请输入顶点信息:";
for (i = 0; i < G.n; i++)
cin >> G.vexs[i];
for (i = 0; i < G.n; i++)
for (j = 0; j < G.n; j++)
G.edges[i][j] = 0;
cout << "请输入每条边对应的两个顶点的序号及权重:\n";
for (n = 0; n < G.e; n++)
{
cin >> i >> j >> k;
G.edges[i][j] = k;
if (pd == 0)
G.edges[j][i] = k;
}
return G;
}
void DisplayMGraph(MGraph G, int pd)
{
for (int i = 0; i < G.n; i++)
{
cout << "第" << i + 1 << "行:";
for (int j = 0; j < G.n; j++)
if (pd == 0 && G.edges[i][j] == 0)
cout << "∞" << "\t";
else
cout << G.edges[i][j] << "\t";
cout << "\n";
}
}
int OutDegree(MGraph G, int i)
{
int degree = 0;
for (int j = 0; j < G.n; j++)
if (G.edges[i][j] != 0)
degree++;
return degree;
}
int InDegree(MGraph G, int i)
{
int degree = 0;
for (int j = 0; j < G.n; j++)
if (G.edges[j][i] != 0)
degree++;
return degree;
}
void PrintOut(MGraph G, int pd)
{
int all;
if (pd == 0)
for (int i = 0; i < G.n; i++)
cout << "第" << i << "个顶点" << G.vexs[i] << "的度是" << OutDegree(G, i) << endl;
else
for (int i = 0; i < G.n; i++)
{
cout << "第" << i << "个顶点" << G.vexs[i] << "的出度是" << OutDegree(G, i) << ",入度是" << InDegree(G, i) << endl;
all = OutDegree(G, i) + InDegree(G, i);
cout << "第" << i << "个顶点" << G.vexs[i] << "的度是" << all << endl;
}
}
int main()
{
cout << "如果是无向图,请输入0;如果是有向图,请输入1:";
int pd;
cin >> pd;
if (pd != 0 && pd != 1)
{
cout << "输入有误,请退出重新输入0或1。";
return 0;
}
MGraph G = CreateMGraph(pd);
cout << "\n分行输出该邻接矩阵为:\n";
DisplayMGraph(G, pd);
PrintOut(G, pd);
system("pause");
return 0;
}
// 2. 使用团队资源管理器窗口连接到源代码管理
// 3. 使用输出窗口查看生成输出和其他消息
// 4. 使用错误列表窗口查看错误
// 5. 转到“项目”>“添加新项”以创建新的代码文件,或转到“项目”>“添加现有项”以将现有代码文件添加到项目
// 6. 将来,若要再次打开此项目,请转到“文件”>“打开”>“项目”并选择 .sln 文件
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
有问题留言
文章来源: chuanchuan.blog.csdn.net,作者:川川菜鸟,版权归原作者所有,如需转载,请联系作者。
原文链接:chuanchuan.blog.csdn.net/article/details/118555012
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)