This commit is contained in:
krahets
2023-10-17 20:29:28 +08:00
parent 44ebc7748b
commit de9bf5a57a
5 changed files with 44 additions and 8 deletions

View File

@ -1152,7 +1152,7 @@ comments: true
/* 链表节点 */
struct node {
Pair *pair;
struct Node *next;
struct node *next;
};
typedef struct node Node;