【数据结构】邻接表创建_CreateALGraph

前端之家收集整理的这篇文章主要介绍了【数据结构】邻接表创建_CreateALGraph前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. #include "stdio.h"
  2. #include "stdlib.h"
  3. #include "io.h"
  4. #include "math.h"
  5. #include "time.h"
  6.  
  7. #define OK 1
  8. #define ERROR 0
  9. #define TRUE 1
  10. #define FALSE 0
  11. #define MAXVEX 100 /* 最大顶点数,应由用户定义 */
  12.  
  13. typedef int Status; /* Status是函数的类型,其值是函数结果状态代码,如OK等 */
  14. typedef char VertexType; /* 顶点类型应由用户定义 */
  15. typedef int EdgeType; /* 边上的权值类型应由用户定义 */
  16.  
  17. typedef struct EdgeNode /* 边表结点 */
  18. {
  19. int adjvex; /* 邻接点域,存储该顶点对应的下标 */
  20. EdgeType info; /* 用于存储权值,对于非网图可以不需要 */
  21. struct EdgeNode *next; /* 链域,指向下一个邻接点 */
  22. }EdgeNode;
  23.  
  24. typedef struct VertexNode /* 顶点表结点 */
  25. {
  26. VertexType data; /* 顶点域,存储顶点信息 */
  27. EdgeNode *firstedge;/* 边表头指针 */
  28. }VertexNode,AdjList[MAXVEX];
  29.  
  30. typedef struct
  31. {
  32. AdjList adjList;
  33. int numNodes,numEdges; /* 图中当前顶点数和边数 */
  34. }GraphAdjList;
  35.  
  36. /* 建立图的邻接表结构 */
  37. void CreateALGraph(GraphAdjList *G)
  38. {
  39. int i,j,k;
  40. EdgeNode *e;
  41. printf("输入顶点数和边数:\n");
  42. scanf("%d,%d",&G->numNodes,&G->numEdges); /* 输入顶点数和边数 */
  43. for(i = 0;i < G->numNodes;i++) /* 读入顶点信息,建立顶点表 */
  44. {
  45. scanf(&G->adjList[i].data); /* 输入顶点信息 */
  46. G->adjList[i].firstedge=NULL; /* 将边表置为空表 */
  47. }
  48. for(k = 0;k < G->numEdges;k++)/* 建立边表 */
  49. {
  50. printf("输入边(vi,vj)上的顶点序号:\n");
  51. scanf("%d,&i,&j); /* 输入边(vi,vj)上的顶点序号 */
  52. e=(EdgeNode *)malloc(sizeof(EdgeNode)); /* 向内存申请空间,生成边表结点 */
  53. e->adjvex=j; /* 邻接序号为j */
  54. e->next=G->adjList[i].firstedge; /* 将e的指针指向当前顶点上指向的结点 */
  55. G->adjList[i].firstedge=e; /* 将当前顶点的指针指向e */
  56. e=(EdgeNode *)malloc(sizeof(EdgeNode)); /* 向内存申请空间,生成边表结点 */
  57. e->adjvex=i; /* 邻接序号为i */
  58. e->next=G->adjList[j].firstedge; /* 将e的指针指向当前顶点上指向的结点 */
  59. G->adjList[j].firstedge=e; /* 将当前顶点的指针指向e */
  60. }
  61. }
  62.  
  63. int main(void)
  64. {
  65. GraphAdjList G;
  66. CreateALGraph(&G);
  67. return 0;
  68. }
  69.  

猜你在找的数据结构相关文章