新学的类c语言,好头疼啊
#include<stdio.h>#define LIST_INIT_SIZE 100
#define LISTINCREMENT 10
#include<malloc.h>
void * malloc(unsigned size);
typedef struct{
ElemType * elem;
int length;
int listsize;
}SqList;
status InitList_Sq(SqList &L){
L.elem = (ElemType * )malloc(LIST_INIT_SIZE * sizeof(ElemType));
if(!L.elem)exit(OVERFLOW);
L.length=0;
L.listsize =LIST_INIT_SIZE;
return OK;
}//InitList_Sq
int main(void)
{
printf("%s",malloc);
}
这是我从书上集合编写的.cpp格式的编程,是关于线性表的顺序表的插入操作。。。
可是。。。我也不知道自己在写什么!