求程序的运行时间,这个怎么是零呢?麻烦大家帮我看看
里面的一部分函数我没有发上来#include<malloc.h>
#include<time.h>
#include<iostream.h>
#define maxsize 10/*分配内存空间*/
typedef int ElemType;
typedef struct
{
ElemType *elem;
int length;//线性表的当前长度
int listsize;//线性表大小.。。。。10
}sqlist;
int main()
{
time_t before,after,during;
sqlist L;//一个顺序表
initlist(&L);
creatlist(&L);
cout<<"排序前"<<endl;
printlist(L);
before=time(NULL);
cout<<"排序前系统时间:"<<before<<endl;
InsertSort(&L);
after=time(NULL);
cout<<"排序后系统时间:"<<after<<endl;
cout<<"运行时间"<<after-before<<endl;
cout<<"插入排序后"<<endl;
printlist(L);
return 0;
}