aceMak1r丶 发表于 2020-10-2 10:27:17

改写主函数

#include "sqlist.cpp"       
{SqList *L;
   printf("初始化L\n");
   InitList(L);printf("ListEmpty(L)=%d\n",ListEmpty(L));
   printf("L的位置1插入元素1\n");ListInsert(L,1,1);
   printf("L的位置2插入元素3\n");ListInsert(L,2,3);
   printf("L的位置3插入元素1\n");ListInsert(L,3,1);
   printf("L的位置4插入元素4\n");ListInsert(L,4,4);
   printf("L的位置5插入元素2\n");ListInsert(L,5,2);
   printf("L: "); DispList(L);
   printf("ListLength(L)=%d\n",ListLength(L));
   printf("ListEmpty(L)=%d\n",ListEmpty(L));
   int e;
   GetElem(L,3,e);
   printf("L的第3个元素:%d\n",e);
   printf("第1个值为1的元素的逻辑序号:%d\n",LocateElem(L,1));
   printf("L的位置4插入元素5\n");ListInsert(L,4,5);
   printf("L: "); DispList(L);
   printf("删除第3个元素\n");
   ListDelete(L,3,e);
   printf("L: "); DispList(L);
   printf("销毁L\n");
   DestroyList(L);
}
主函数还能改成什么,求大佬救助

aceMak1r丶 发表于 2020-10-2 10:28:10

原主函数是 void main()

livcui 发表于 2020-10-2 11:03:06

什么意思?

ArmandXiao 发表于 2020-10-4 19:03:17

可以再解释一下嘛

风过无痕1989 发表于 2020-10-5 06:06:37

不明白你想干什么
页: [1]
查看完整版本: 改写主函数