This commit is contained in:
ada-dmitry
2023-04-04 14:27:55 +03:00
parent bb0687beb9
commit 7740861ce6
12 changed files with 497 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
typedef struct Node {
int x;
struct Node* next;
struct Node* prev;
char name[STR_LEN];
} Node;