动态数组C++实现方法(分享)
来源:本站原创|时间:2020-01-10|栏目:C语言|点击: 次
回顾大二的数据结构知识。从数组开始。实现了一个可自动扩充容量的泛型数组。
头文件:Array.h
#ifndef Array_hpp #define Array_hpp template <class T> class Array{ private: T *base; //数组首地址 int length; //数组中元素 int size; //数组大小,以数组中元素的大小为单位 public: //初始化数组,分配内存 bool init(); //检查内存是否够用,不够用就增加 bool ensureCapcity(); //添加元素到数组尾 bool add(T item); //插入元素到数组的具体位置,位置从1开始 bool insert(int index,T item); //删除指定位置的元素并返回,位置从1开始 T del(int index); //返回指定位置的元素 T objectAt(int index); //打印数组所有元素 void display(); }; #endif /* Array_hpp */
实现:Array.cpp
#include "Array.hpp" #include <mm_malloc.h> #include <iostream> using namespace std; template<typename T> bool Array<T>::init(){ base = (T *)malloc(10*sizeof(T)); if(!base){ return false; } size = 10; length = 0; return true; } template<typename T> bool Array<T>::ensureCapcity(){ if(length >= size){ T *newBase = (T*)realloc(base,10 * sizeof(T) + size); if(!newBase){ return false; } base = newBase; size += 10; newBase = nullptr; } return true; } template<typename T> bool Array<T>::add(T item){ if(!ensureCapcity()){ return false; } T *p = base + length; *p = item; length ++; return true; } template<typename T> bool Array<T>::insert(int index,const T item){ if(!ensureCapcity()){ return false; } if(index < 1 || index > length){ return false; } T *q = base + index - 1; T *p = base + length - 1; while( p >= q){ *(p+1) = *p; p--; } *q = item; q = nullptr; p = nullptr; length ++; return true; } template<typename T>T Array<T>::del(int index){ if(index<1 || index > length){ return NULL; } T *q = base + index - 1; T item = *q; ++q; T *p = base + length; while(q <= p){ *(q-1)=*q; ++q; } length --; return item; } template<typename T>T Array<T>::objectAt(int index){ if(index<1 || index > length){ return NULL; } T *q = base; return *(q + index - 1); } template <typename T>void Array<T>::display(){ T *q = base; T *p = base +length - 1; while (q<=p) { cout << *(q++)<<" "; } cout << endl; }
使用:
#include <iostream> #include "Array.cpp" using namespace std; int main(int argc, const char * argv[]) { Array<int> array = *new Array<int>; array.init(); array.add(1); array.insert(1,2); array.objectAt(1); return 0; }
以上这篇动态数组C++实现方法(分享)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我们。
您可能感兴趣的文章
- 04-02c语言没有round函数 round c语言
- 01-10求子数组最大和的解决方法详解
- 01-10深入理解C++中常见的关键字含义
- 01-10使用C++实现全排列算法的方法详解
- 01-10c++中inline的用法分析
- 01-10如何寻找数组中的第二大数
- 01-10用C++实现DBSCAN聚类算法
- 01-10全排列算法的非递归实现与递归实现的方法(C++)
- 01-10C++大数模板(推荐)
- 01-10浅谈C/C++中的static与extern关键字的使用详解
阅读排行
本栏相关
- 04-02c语言函数调用后清空内存 c语言调用
- 04-02func函数+在C语言 func函数在c语言中
- 04-02c语言的正则匹配函数 c语言正则表达
- 04-02c语言用函数写分段 用c语言表示分段
- 04-02c语言中对数函数的表达式 c语言中对
- 04-02c语言编写函数冒泡排序 c语言冒泡排
- 04-02c语言没有round函数 round c语言
- 04-02c语言分段函数怎么求 用c语言求分段
- 04-02C语言中怎么打出三角函数 c语言中怎
- 04-02c语言调用函数求fibo C语言调用函数求
随机阅读
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 01-10delphi制作wav文件的方法
- 04-02jquery与jsp,用jquery
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 01-11ajax实现页面的局部加载
- 01-10C#中split用法实例总结
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-10SublimeText编译C开发环境设置