143.vector模板库
- myvector.h
#pragma once
#include <initializer_list>
#include <iostream>
using namespace std; template<class T>
class myvector
{
public:
myvector();
myvector(int n);
myvector(initializer_list<T> my);
void show() const;
~myvector();
//用于迭代
T *begin();
T *end();
int arraysize();
int memsize();
//后插
void push_back(T data);
//前插
void push_front(T data);
//返回的是副本
T operator[](int i) const;
//返回的不是副本
T &operator[](int i);
//发现左值
T* find(T &t);
//发现右值
T* find(T &&t);
//改变一个值,传递的是右值
void change(T *pos, T &&t);
//改变一个值,传递的是左值
void change(T *pos, T &t);
void del(T &t);
void del(T &&t);
//找到的位置之前插入
void insert(T &t, T &newt);
void insert(T &&t, T &&newt); template<class T>
friend ostream& operator <<(ostream &out, myvector<T> &myv);
public:
T * p;
int memn;//内存长度
int realn;//数组长度
}; - myvector.cpp
#include "myvector.h" template<class T>
myvector<T>::myvector():p(nullptr),memn(),realn()
{ } template<class T>
myvector<T>::myvector(int n)
{
this->memn = this->realn = n;
this->p = new T[n];
memset(this->p, , sizeof(T)*n);
} template<class T>
myvector<T>::myvector(initializer_list<T> my)
{
this->realn = this->memn = my.size();
this->p = new T[my.size()];
int id = ;
//初始化
for (auto i : my)
{
this->p[id] = i;
id++;
}
} template<class T>
void myvector<T>::show() const
{
for (int i = ; i < realn; i++)
{
cout << p[i];
}
} template<class T>
myvector<T>::~myvector()
{
if (p != nullptr)
{
delete[] this->p;
}
} template<class T>
T * myvector<T>::begin()
{
return this->p;
} template<class T>
T * myvector<T>::end()
{
return this->p + this->realn;
} template<class T>
int myvector<T>::arraysize()
{
return this->realn;
} template<class T>
int myvector<T>::memsize()
{
return this->memn;
} template<class T>
void myvector<T>::push_back(T data)
{
if (this->p == nullptr || this->memn == )
{
p = new T;
*p = data;
memn = ;
realn = ;
}
else if(memn == realn)
{
T *ptemp = new T[this->memn + ];
memcpy(ptemp, this->p, this->realn * sizeof(T));
*(ptemp + realn) = data;
delete[] this->p;
this->p = ptemp;
realn += ;
memn += ;
}
else
{
p[realn] = data;
realn++;
}
} template<class T>
void myvector<T>::push_front(T data)
{
if (this->p == nullptr || this->memn == )
{
p = new T;
*p = data;
memn = ;
realn = ;
}
else if (memn == realn)
{
T *ptemp = new T[this->memn + ];
memcpy(ptemp + , this->p, this->realn * sizeof(T));
*ptemp = data;
delete[] this->p;
this->p = ptemp;
realn += ;
memn += ;
}
else
{
for (int i = ; i < realn; i++)
{
p[i + ] = p[i];
}
p[] = data;
realn += ;
}
} template<class T>
T myvector<T>::operator[](int i) const
{
if (i > realn)
{
throw ;
}
return this->p[i];
} template<class T>
T & myvector<T>::operator[](int i)
{
if (i > realn)
{
throw ;
}
return this->p[i];
} template<class T>
T * myvector<T>::find(T & t)
{
for (auto ib = this->begin(); ib != this->end(); ib++)
{
if (*it == t)
{
return ib;
}
}
} template<class T>
T * myvector<T>::find(T && t)
{
for (auto ib = this->begin(); ib != this->end(); ib++)
{
if (*it == t)
{
return ib;
}
}
} template<class T>
void myvector<T>::change(T * pos, T && t)
{
if (pos != nullptr)
{
*pos = t;
}
} template<class T>
void myvector<T>::change(T * pos, T & t)
{
if (pos != nullptr)
{
*pos = t;
}
} template<class T>
void myvector<T>::del(T & t)
{
int pos = -;
for (int i = ; i < this->realn; i++)
{
if (t == *(this->p + i))
{
pos = i;
break;
}
}
if (pos != -)
{
if (pos == this->realn)
{
this->realn -= ;
}
else
{
for (int i = pos; i < realn-; i++)
{
p[i] = p[i + ];
}
realn -= ;
}
}
} template<class T>
void myvector<T>::del(T && t)
{
int pos = -;
for (int i = ; i < this->realn; i++)
{
if (t == *(this->p + i))
{
pos = i;
break;
}
}
if (pos != -)
{
if (pos == this->realn)
{
this->realn -= ;
}
else
{
for (int i = pos; i < realn - ; i++)
{
p[i] = p[i + ];
}
realn -= ;
}
}
} template<class T>
void myvector<T>::insert(T & t, T & newt)
{
int pos = -;
for (int i = ; i < this->realn; i++)
{
if (t == *(this->p + i))
{
pos = i;
break;
}
} if (pos != -)
{
if (this->realn == this->memn)
{
T *ptemp = new T[this->memn + ];
memcpy(ptemp, this->p, sizeof(T)*memn); delete[] this->p;
this->p = ptemp;
this->realn += ;
this->memn += ;
for (int i = realn - ; i >= pos; i--)
{
p[i + ] = p[i];
}
p[pos] = newt;
}
else
{
for (int i = realn - ; i >= pos; i--)
{
p[i + ] = p[i];
}
p[pos] = newt;
this->realn += ;
}
} } template<class T>
void myvector<T>::insert(T && t, T && newt)
{
int pos = -;
for (int i = ; i < this->realn; i++)
{
if (t == *(this->p + i))
{
pos = i;
break;
}
} if (pos != -)
{
if (this->realn == this->memn)
{
T *ptemp = new T[this->memn + ];
memcpy(ptemp, this->p, sizeof(T)*memn); delete[] this->p;
this->p = ptemp;
this->realn += ;
this->memn += ;
for (int i = realn - ; i >= pos; i--)
{
p[i + ] = p[i];
}
p[pos] = newt;
}
else
{
for (int i = realn - ; i >= pos; i--)
{
p[i + ] = p[i];
}
p[pos] = newt;
this->realn += ;
}
}
} template<class T>
ostream & operator<<(ostream & out, myvector<T> & myv)
{
for (int i = ; i < myv.realn; i++)
{
out << myv.p[i];
}
return out;
} - main.cpp
#include "myvector.h"
#include "myvector.cpp" void main()
{
myvector<double> myv({ 1.1,2.2,3.3 });
//myv.show();
////迭代器
//for (auto i : myv)
//{
// cout << i << endl;
//}
myv.push_front(4.4);
myv.push_back(5.5);
myv.insert(2.2, 8.8);
myv.del(2.2);
myv.push_back(2.2);
myv.del(2.2);
/*for (auto ib = myv.begin(), ie = myv.end(); ib != ie; ib++)
{
cout << *ib << endl;
}*/
//cout << myv[1] << endl;
cout << myv << endl;
myv.show();
cin.get();
}
143.vector模板库的更多相关文章
- 35.自己实现vector模板库myvector
myvector.h #pragma once //自己写的vector模板库 template <class T> class myvector { public: //构造 myvec ...
- c++转载系列 std::vector模板库用法介绍
来源:http://blog.csdn.net/phoebin/article/details/3864590 介绍 这篇文章的目的是为了介绍std::vector,如何恰当地使用它们的成员函数等操作 ...
- C++ 标准模板库(STL)——容器(Containers)的用法及理解
C++ 标准模板库(STL)中定义了通用的模板类和函数,这些模板类和函数可以实现多种流行和常用的算法和数据结构,如向量(vector).队列(queue).栈(stack).set.map等.这次主要 ...
- 标准模板库(STL)学习探究之vector容器
标准模板库(STL)学习探究之vector容器 C++ Vectors vector是C++标准模板库中的部分内容,它是一个多功能的,能够操作多种数据结构和算法的模板类和函数库.vector之所以被 ...
- C++STL模板库序列容器之vector
目录 STL之Vecter 一丶STL简介 二丶Vector用法 1.vector容器的使用 2.vector迭代器. 3.vector中的方法. 三丶常用算法 1.常见算法中的算法方法. 2.sor ...
- C++标准模板库(STL)之Vector
在C中,有很多东西需要自己实现.C++提供了标准模板库(Standard Template Libray,STL),其中封装了很多容器,不需要费力去实现它们的细节而直接调用函数来实现功能. 具体容器链 ...
- C++的标准模板库STL中实现的数据结构之顺序表vector的分析与使用
摘要 本文主要借助对C++的标准模板库STL中实现的数据结构的学习和使用来加深对数据结构的理解.即联系数据结构的理论分析和详细的应用实现(STL),本文是系列总结的第一篇,主要针对线性表中的顺序表(动 ...
- C++:标准模板库vector
一:介绍 vector是C++标准模板库,是一个容器,底层是数组,为连续内存. 命名空间为std,所属头文件为<vector> 注意:不是<vector.h> vector ...
- STL标准模板库(简介)
标准模板库(STL,Standard Template Library)是C++标准库的重要组成部分,包含了诸多在计算机科学领域里所常见的基本数据结构和基本算法,为广大C++程序员提供了一个可扩展的应 ...
随机推荐
- [JavaEE]Hibernate 所有缓存机制详解
Hibernate提供的一级缓存 hibernate是一个线程对应一个session,一个线程可以看成一个用户.也就是说session级缓存(一级缓存)只能给一个线程用,别的线程用不了,一级缓存就是和 ...
- 26.QT颜色与布局
dialog.h #ifndef PALETTE_H #define PALETTE_H #include <QDialog> #include <QComboBox> #in ...
- CZLayer的阴影
CALayer有一个shadow属性 意思是阴影 shadowcolor //颜色 shadowoffset //偏移 shadowOpacity //透明度 layer有一个方法 mas ...
- HttpClient简单操作
HttpClient 这个框架主要用来请求第三方服务器,然后获取到网页,得到我们需要的数据: HttpClient设置请求头消息User-Agent模拟浏览器 比如我们请求 www.tuicool.c ...
- MVC中添加模块区域,并设置RedirectToAction跳转
废话少说,直接上图:
- Nosql的实际应用场景
怎么样把NoSQL引入到我们的系统架构设计中,需要根据我们系统的业务场景来分析,什么样类型的数据适合存储在NoSQL数据库中,什么样类型的数据必须使用关系数据库存储.明确引入的NoSQL数据库带给系统 ...
- html5 好用功能总结
1.表格元素 a.<caption>设置表格标题 b.<colgroup> . <col> 设置列 //style span 2.分组元素 a.<blockq ...
- html5中canvas(2)
1.绘制图片(drawImage)(重点) 1.1 基本绘制图片的方式 context.drawImage(img, x, y); 参数: img 可以为:图片.视频或者canvas画布 x,y 绘制 ...
- input 框输入数字相关
input框限制只能输入正整数,逻辑与和或运算 有时需要限制文本框输入内容的类型,本节分享下正则表达式限制文本框只能输入数字.小数点.英文字母.汉字等代码. 例如,输入大于0的正整数 代码如下: &l ...
- Unity 移动键Q的三种用法 For Mac,Windows类同
拖动整个场景:三指 (任何模式下)ALT+三指:旋转当前镜头 (任何模式下)双指前后滑动:缩放镜头 ps1:Q键移动的游戏场景,W移动的是游戏对象 ps2:三指 = 左键拖动