单链表
2025-09-02 15:35
//list.h #ifndef __LIST_H__ #define __LIST_H__ //节点 typedef struct node{ int data; struct node* next; }node_t; //链表 typedef struct list{