摘要: Add a node at linked list end #include <stdio.h> #include <stdlib.h> //malloc typedef struct node{ int data; struct node* next; }*list; list add_node_ 阅读全文
posted @ 2022-07-13 00:04 越菜越自信 阅读(27) 评论(0) 推荐(0)