parent
b44159755f
commit
c7838cccdd
@ -1,21 +1,16 @@
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <windows.h>
|
||||
|
||||
#define MAX 1000
|
||||
|
||||
typedef struct node {
|
||||
#define MAX 1000
|
||||
typedef struct node {
|
||||
char a[100];
|
||||
struct node* next;
|
||||
}edgenode;
|
||||
|
||||
struct vexnode {
|
||||
struct vexnode {
|
||||
char name[100];
|
||||
struct node* firstnode;
|
||||
edgenode* firstnode;
|
||||
};
|
||||
|
||||
struct list {
|
||||
struct vexnode adjust[6];
|
||||
struct list {
|
||||
vexnode adjust[7];
|
||||
int e, n;
|
||||
};
|
Loading…
Reference in new issue