You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ddd/城市地铁导航系统.c

16 lines
253 B

1 year ago
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
1 year ago
#define MAX 1000
typedef struct node {
1 year ago
char a[100];
struct node* next;
}edgenode;
1 year ago
struct vexnode {
1 year ago
char name[100];
1 year ago
edgenode* firstnode;
1 year ago
};
1 year ago
struct list {
vexnode adjust[7];
1 year ago
int e, n;
};