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++程序员提供了一个可扩展的应 ...
随机推荐
- 信息安全-加密:SM4.0
ylbtech-信息安全-加密:SM4.0 SM4.0(原名SMS4.0)是中华人民共和国政府采用的一种分组密码标准,由国家密码管理局于2012年3月21日发布.相关标准为“GM/T 0002-201 ...
- Linux就该这么学 20181009(第十二章 SAMBA)
参考链接https://www.linuxprobe.com Samba 跨平台的文件共享 linux-linux linux-windows /etc/samba/smb.conf 里面 []这个名 ...
- Vmware VM共享
打开虚拟机,设置,选项点击共享文件夹 点击启用,将电脑windows的目录添加过来 进入终端即可以进入
- .NET CORE MVC网站体验
安装SDK https://www.microsoft.com/net/download/core 运行命令行工具 mkdir coremvc cd coremvc dotnet new 文件建立成功 ...
- Java从入门到精通一步到位!
Java作为近几年来非常火的编程语言,转行来做Java的人不计其数,但如今真正的人才仍然匮乏,所以学习Java一定要有一个系统的学习规划课程.阿里云大学帮您规划Java学习路线可以帮助您从一个小白成长 ...
- Linux基础、常用命令
Linux作为IT程序员必知必会知识,将自己学习到的和最近工作常用的一些命令进行总结,作为我结束过去生活和开始类程序员的序吧! 如果你想系统性学习的话,还是建议看书(鸟哥的Linux私房菜)或网上视频 ...
- pytorch 8 CNN 卷积神经网络
# library # standard library import os # third-party library import torch import torch.nn as nn impo ...
- 新手学python-Day4-作业
购物车程序 要求: 1.启动程序后,让用户输入工资,然后打印商品列表 2.允许用户根据商品编号购买商品 3.用户选择商品后,检查余额是否足够,够了就扣款,不够就提醒 4.可随时退出,退出时,打印已购买 ...
- Golang-and-package-version-managment
参考文章 学习Golang之后对golang中的版本管理,包管理等机制一直没有很好的琢磨,偶然想起还是觉得很有必要进行归纳,包管理使用起来简单,无非就是install,uninstall,list等, ...
- 前端通过canvas实现图片压缩
在一次的项目中,需要用户上传图片,目前市场随便一个手机拍出来的照片都是好几兆,直接上传特别占用带宽,影响用户体验,所以要求对用户上传图片进行压缩后再上传:那么前端怎么实现这个功能呢? 亲测可将4M图片 ...