摘要: #include #include typedef struct node{ int data; struct node *next; }N; N *head = (N *)malloc(sizeof(N));//创建头结点 void main(){ N *r = head;//尾指针,开始指向头结点 N *newPoint; printf("请输入任... 阅读全文
posted @ 2018-03-18 21:03 会飞的鱼摆摆 阅读(1240) 评论(0) 推荐(0) 编辑
摘要: #include #define n 200 struct student { long num; char name[20]; float score; }; void main() { int i, j; struct student stu[n + 1]; struct student *p_stu; p_stu = stu+1;... 阅读全文
posted @ 2018-03-18 14:57 会飞的鱼摆摆 阅读(1558) 评论(0) 推荐(0) 编辑