顺序表(C++类模板实现)

1. 用C++实现顺序表

    本文用到C++中的类模板,用类模板的好处就是方便建立任何类型的顺序表。但类模板这里有个坑就是无法分离编译,具体原因可以百度搜索类模板无法分离编译。最后废话不多说,直接上代码。

2. 代码

    sqlist.h文件实现顺序表的声明和定义

#ifndef SQLIST_H
#define SQLIST_H
#define INIT_SIZE 100
#define INCTEMENT 20
#include <iostream>
using namespace std;
template <typename T>
class Sqlist {
private:
    /* 顺序表的定义 
    -*/
    T *elem; // 存储空间基址
    int size; // 当前顺序表的存储容量
    int length; // 当前顺序表的长度
public:
    Sqlist() = default; // 默认的构造函数
    bool Init_Sqlist(); // 初始化顺序表
    int GetSize(); // 获取顺序表的存储容量
    int Getlen(); // 获取顺序表的长度
    void Clear(); // 重置顺序表
    bool Empty(); //判断表是否为空
    bool index(int idx, T &elem); // 用于获取相应下标的元素
    int index(T elem, bool (* compare)(T, T)); // 用与获取第一个相似元素的位置 
    void traverse(void (* print)(T &elem)); // 用于打印顺序表中的元素
    bool insert(T elem); // 用于在顺序表的最后添加元素 
    bool insert(int idx, T elem); // 用与在顺序表指定的位置添加元素 
    bool remove(T &elem); // 用于删除顺序表的最后一个元素 ?
    bool remove(int idx, T &elem); // 用于在顺序表的指定位置删除元素 ?
    T operator[](int idx); // 重载下标运算符
    ~Sqlist(); // 重写顺序表的析构函数
};

/*
    这里用来实现上述类中成员函数的定义
 */
template <typename T>
bool Sqlist<T>::Init_Sqlist() {
    this -> elem = (T *)malloc(INIT_SIZE * sizeof(T));
    if (!this -> elem) {
        cerr << "Init Wrong!" << endl;
        return false;
    }
    this -> size = INIT_SIZE;
    this -> length = 0;
    return true;
}

template <typename T>
inline int Sqlist<T>::GetSize() {
    return this -> size;
}

template <typename T>
inline int Sqlist<T>::Getlen() {
    return this -> length;
}

template <typename T>
inline void Sqlist<T>::Clear() {
    this -> length = 0;
}

template <typename T>
inline bool Sqlist<T>::Empty() {
    if (this -> length == 0) {
        return true;
    }
    return false;
}

template <typename T>
bool Sqlist<T>::index(int idx, T &elem) {
    if (idx < 1 || idx > this -> length) {
        return false;
    }
    elem = this -> elem[idx - 1];
    return true;
}

template <typename T>
int Sqlist<T>::index(T elem, bool (* compare)(T, T)) {
    for (int i = 0; i != this -> length; i++) {
        if (compare(elem, (this -> elem)[i])) {
            return i;
        }
    }
    return -1;
}

template <typename T>
void Sqlist<T>::traverse(void (* print)(T &elem)) {
    for (int i = 0; i != this -> length; i++) {
        /* code */
        print((this -> elem)[i]);
    }
    cout << endl;
}

template <typename T>
bool Sqlist<T>::insert(T elem) {
    if (this -> length == this -> size) {
        T *newelem = (T *)realloc(this -> elem, (this -> size + INCTEMENT) * sizeof(T));
        if (!newelem) {
            cerr << "Error allocating memory!" << endl; 
            return false;
        }
        this -> size += INCTEMENT;
        this -> elem = newelem;
    }
    (this -> elem)[this -> length] = elem;
    this -> length += 1;
    return true;
}

template <typename T>
bool Sqlist<T>::insert(int idx, T elem) {
    if (idx < 1 || idx > this -> length + 1) {
        return false;
    }
    if (this -> length == this -> size) {
        T *newelem = (T *)realloc(this -> elem, (this -> size + INCTEMENT) * sizeof(T));
        if (!newelem) {
            cerr << "Error allocating memory!" << endl; 
            return false;
        }
        this -> size += INCTEMENT;
        this -> elem = newelem;
    }
    for(int i = this -> length; i >= idx; i--) {
        (this -> elem)[i] = (this -> elem)[i - 1];
    }
    (this -> elem)[idx - 1] = elem;
    this -> length += 1;
    return true;
}

template <typename T>
bool Sqlist<T>::remove(T &elem) {
    if (this -> length == 0) {
        return false;
    }
    elem = (this -> elem)[--this -> length];
    return true;
}

template <typename T>
bool Sqlist<T>::remove(int idx, T &elem) {
    if (this -> length == 0) {
        return false;
    }
    if (idx < 1 || idx > this -> length) {
        return false;
    }
    elem = (this -> elem)[idx - 1];
    for (int i = idx - 1; i < this -> length - 1; i++) {
        (this -> elem)[i] = (this -> elem)[i + 1];
    }
    this -> length--;

    return true;
}

template <typename T>
T Sqlist<T>::operator[](int idx) {
    if (idx < 1 || idx > this -> length) {
        cerr << "subscript wrong!" << endl; 

    }
    return this -> elem[idx - 1];
}

template <typename T>
Sqlist<T>::~Sqlist() {
    free(this -> elem);
    this -> elem = nullptr;
    this -> size = 0;
    this -> length = 0;
}


/*
    用来实现非成员函数的定义
 */
template <typename T>
void print(T &elem) {
    cout << elem << " ";
}

template <typename T>
bool compare(T t1, T t2) {
    /* 其中T代表任意的类型 */
    if (t1 == t2) {
        return true;
    }
    return false;
}
#endif

    main.cpp文件测试顺序表

#include <iostream>
#include "sqlist.h"
using namespace std;
int main(int argc, char const *argv[])
{
    Sqlist<int> s;
    int tmp;
    s.Init_Sqlist();
    s.insert(2);
    s.insert(3);
    s.insert(2,5);
    s.traverse(print);
    s.remove(4, tmp);
    s.traverse(print);
    return 0;
}
  • 8
    点赞
  • 49
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值