#pragma once
template <typename T>
class SeqList
{
public:
SeqList(int Capacity);
~SeqList(void);
int getLen();
int getCapacity();
int insert(T &t, int pos);
int get(int pos, T &t);
int del(int pos, T &t);
private:
int len;
int capacity;
T *pArray; //数组
};