数据结构复习资料
1、函数实现单链表的插入算法。int ListInsert(LinkList L,int i,ElemType e){LNode *p,*s;int j;p=L;j=0;while((p!=NULL)
数据结构复习资料