摘要: #include #include #include typedef struct list LIST; struct list { int data; struct list *next; }; void print_list(struct list *p) { struct list *head = p; while (head) ... 阅读全文
posted @ 2018-05-01 23:01 dquery 阅读(530) 评论(0) 推荐(0) 编辑