摘要: 单链表就是一个表结构最后存储的位置是下一个表结构的地址,一般通过p->next表示存储的下一个位置的地址 // link_list.h typedef int data_t; typedef struct node { data_t data; struct node * next; }listno 阅读全文
posted @ 2023-09-18 20:05 dack_deng 阅读(10) 评论(0) 推荐(0) 编辑