利用数觉结构和C语言。实现单链表的创建 插入 删除 打印 查询

日期:2009-05-26 16:05:14 人气:1

利用数觉结构和C语言。实现单链表的创建 插入 删除 打印 查询

#include #include #define N 8 typedef struct node {int data; struct node *next; }node; node * createsl() { node *p,*s,*h; int j=1,x; p=s=h=(node*)malloc(sizeof(node)); h->next=NULL; printf("please input the data to c
    A+
热门评论