图的存储结构——邻接矩阵

作者:追风剑情 发布于:2014-7-6 19:04 分类:Algorithms

邻接矩阵是表示顶点之间相邻关系的矩阵。

示例:

程序语言 C++

开发工具 Visual Studio2010

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. #define MAXVEX 5 /*图中最大顶点数*/
  5. typedef char VertexType[3]; /*定义VertexType为char数组类型*/
  6. typedef struct vertex
  7. {
  8. int adjvex; /*顶点编号*/
  9. VertexType data;/*顶点信息*/
  10. } VType; /*顶点类型*/
  11.  
  12. typedef struct graph
  13. {
  14. int n,e; /*n为实际顶点数,e为实际边数*/
  15. VType vexs[MAXVEX]; /*顶点集合*/
  16. int edges[MAXVEX][MAXVEX]; /*边的集合*/
  17. } AdjMatix; /*图的邻接矩阵类型*/
  18.  
  19. int CreateMatix(AdjMatix &g)
  20. {
  21. int i,j,k,b,e;
  22. int w;
  23. printf("顶点数(n)和边数(e):");
  24. scanf("%d%d", &g.n, &g.e);
  25. for (i=0; i<g.n; i++)
  26. {
  27. printf("序号为%d的顶点信息:", i);
  28. scanf("%s", g.vexs[i].data);
  29. g.vexs[i].adjvex = i; /*顶点编号为i*/
  30. }
  31.  
  32. for (i=0; i<g.n; i++)
  33. for (j=0; j<g.n; j++)
  34. g.edges[i][j] = 0;
  35.  
  36. for (k=0; k<g.e; k++)
  37. {
  38. printf("序号为%d的边=>", k);
  39. printf("起点号 终点号 权值:");
  40. scanf("%d%d%d", &b, &e, &w);
  41. if (b<g.n && e<g.n && w>0)
  42. g.edges[b][e] = w;
  43. else
  44. {
  45. printf("输入错误!\n");
  46. return(0);
  47. }
  48. }
  49.  
  50. return(1);
  51. }
  52.  
  53. void DispMatix(AdjMatix g)
  54. {
  55. int i,j;
  56. printf("\n图的邻接矩阵:
  57. ");
  58. for (i=0; i<g.n; i++)
  59. {
  60. for (j=0; j<g.n; j++)
  61. printf("%3d", g.edges[i][j]);
  62. printf("\n");
  63. }
  64. }
  65.  
  66. void main()
  67. {
  68. AdjMatix g;
  69. CreateMatix(g);
  70. DispMatix(g);
  71.  
  72. system("pause");
  73. }

运行测试

运行效果.png

标签: 邻接矩阵

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号