1 #include<stdio.h> 2 #include<malloc.h> 3 #define LEN sizeof(struct node) 4 5 typedef struct node{ 6 int elem; 7 struct node *next; 8 }*LinkList; //定义链表的结构体 9 10 //初始化链表 11 LinkList InitList(){ 12 LinkList head; 13 head = (struct node *) malloc (LEN); //定义一个头结点... Read More
posted @ 2013-03-19 20:33
Arvin_Z
Views(322)
Comments(0)
Diggs(0)

浙公网安备 33010602011771号