void
王昊 1 year ago
parent 849bacb310
commit 92df0c081a

@ -0,0 +1,21 @@
#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;
};
Loading…
Cancel
Save