线性表抽象数据类型

template 
class List
{
private:
    void clear();
    bool isEmpty();
    bool append(const T &);
    bool insert(int a, const T&);
    bool position(int &p, const T&);
};

你可能感兴趣的:(C/C++,Algorithm)