我想在vc6.0上面写一个操作线性表的代码
如题,调试时出现:\VC6.0\MyProjects\关于线性结构\线性结构操作.cpp(17) : error C2065: 'InitList' : undeclared identifier
D:\VC6.0\MyProjects\关于线性结构\线性结构操作.cpp(19) : error C2065: 'InsertLastList' : undeclared identifier
D:\VC6.0\MyProjects\关于线性结构\线性结构操作.cpp(20) : error C2065: 'InsertPosList' : undeclared identifier
D:\VC6.0\MyProjects\关于线性结构\线性结构操作.cpp(22) : error C2065: 'GetElem' : undeclared identif
是没有声明,应该加什么头文件可以使用这些?高手赐教!
代码如下;#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<conio.h>
typedef int ElemType;
struct List
{
ElemType *list;
int size;
int MaxSize;
};
void main ()
{
int a[10]={2,4,6,8,10,12,14,16,18,20};
int i;
struct List L;
InitList(&L,5);
for(i=0;i<10;i++)
InsertLastList(&L,a[i]);
InsertPosList(&L,11,48);
InsertPosList(&L,1,64);
printf("%d\n",GetElem(&L,4));
getch();
}