摘要: 阅读全文
posted @ 2020-08-29 04:30 Jasper2003 阅读(125) 评论(0) 推荐(0) 编辑
摘要: Example: #include <stdio.h> #include <stdlib.h> typedef struct node { int num; struct node *next; }Node; typedef struct my_list { Node *head; int coun 阅读全文
posted @ 2020-08-29 02:38 Jasper2003 阅读(163) 评论(0) 推荐(0) 编辑