摘要: typedef struct node_s { int val; struct node_s* next; }Node_t; typedef struct linkedList_s { Node_t* head; //int size; }LinkedList_t; //创建链表 LinkedLis 阅读全文
posted @ 2022-02-10 21:37 晓风霜度- 阅读(77) 评论(0) 推荐(0)