求数据结构(c语言)单链表相关代码

日期:2011-06-03 20:39:28 人气:3

求数据结构(c语言)单链表相关代码

#include #include typedef char datatype; struct listnode { datatype data; listnode *next; }; typedef listnode * linklist; linklist createlist() { linklist head; listnode *p; char ch; head=NULL; while((ch=getchar())!='\n') { p=(listno
    A+
热门评论