This commit is contained in:
jixishi
2024-06-26 15:54:30 +08:00
parent 8c8cf20056
commit 11b8128796
12 changed files with 366 additions and 181 deletions

View File

@@ -12,7 +12,7 @@ typedef struct List_Node_t { //节点结构
struct List_Node_t *next;
} List_Node_t;
typedef struct { //链表结构
typedef struct{ //链表结构
List_Node_t *head;
List_Node_t *tail;
long len;