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