【C++】实现动态顺序表的PushBack(),PopBack(),PushFront(),PopFront(),Find(),Insert
建立源文件SeqList.cpp:#define _CRT_SECURE_NO_WARNINGS 1
#include"SeqList.h"
int main()
{
Test();
system("pause");
return 0;
}建立源文件SeqList.h:#ifndef __SEQLIST_H__
#define __SEQLIST_H__
#inclu