From 92df0c081a7facbadd2517b46e2ac23c226c578c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=98=8A?= <956269333@qq.com> Date: Sun, 25 Jun 2023 20:50:10 +0800 Subject: [PATCH] =?UTF-8?q?=E7=8E=8B=E6=98=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 城市地铁导航系统.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 城市地铁导航系统.c diff --git a/城市地铁导航系统.c b/城市地铁导航系统.c new file mode 100644 index 0000000..0b733ad --- /dev/null +++ b/城市地铁导航系统.c @@ -0,0 +1,21 @@ +#include +#include +#include +#include + +#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; +}; \ No newline at end of file