创建一个单链表,错在哪里
#include<iostream>using namespace std;
class list
{
public:
int newlist;
private:
char *elem;
int length;
int listsize;
}
list::newlist()
{
printf("创建一个单链表");
elem=(ElemType *)malloc(sizeof(ElemType)) ;
if(elem==NULL)
return(ERROR);
lenght=0;
return OK;
}
main()
{
newlist;
}