随笔分类 - 数据结构
摘要:#include "stdio.h" #include "malloc.h" #define MAX 100 typedef char VertexType; int visited[MAX]; typedef struct node { int adjvex; struct node *next;
阅读全文
摘要:查看代码 #include "stdio.h" #define MAXSIZE 100 typedef struct { char ch[MAXSIZE]; int Len; }String; int StrLength(String *S) { int i= 0; while(S->ch[i]!=
阅读全文