数据结构 单链表的定义及检索、插入、删除.遍历等算法的实现

日期:2014-03-18 20:07:48 人气:1

数据结构 单链表的定义及检索、插入、删除.遍历等算法的实现

#include #include "stdlib.h" #define maxlen 50 typedef struct { int data[maxlen]; int last; }Sequenlist; Sequenlist *SqLset(){ //建立表 Sequenlist *L; int i; L=(Sequenlist *)malloc(sizeof(Sequenlist))
    A+
热门评论