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.
21 lines
284 B
21 lines
284 B
1 year ago
|
#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;
|
||
|
};
|