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

21 lines
284 B

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