摘要: #include<stdlib.h>#include<stdio.h>#define max 10struct list { int data; struct list *next; }; //定义结构体typedef struct list node; //结构体的变量typedef node* link; //结构体指针//链表输出函数的实现方式void link_output(link new) { link ... 阅读全文