摘要: 题目链接:http://acm.sdut.edu.cn/sdutoj/problem.php?action=showproblem&problemid=2053应用:创建单链表,合并单链表,打印单链表#include<stdio.h>#include<stdlib.h>#include<string.h>typedef struct node{ int data; char name [200]; struct node *next;}LinkList;LinkList *creat(int n){ LinkList *head,*p,*tail; 阅读全文
posted @ 2012-08-01 19:49 刘壮 阅读(425) 评论(0) 推荐(0) 编辑