线性表的初始化的调用
#include <stdio.h>#include <malloc.h>
typedef struct(){
int length;
int *s;
int size;
}sqlist;
void Initlist(sqlist *p,int l){
p->s=(int*)malloc(p->size*sizeof(int))
p->length=l;
}
上面的程序怎么调用啊唉请大家帮帮忙呢
2010-05-12 17:15

2010-05-12 17:38
2010-05-12 17:38
2010-05-13 21:28
2010-05-20 09:00