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++程序员提供了一个可扩展的应 ...
随机推荐
- Ubuntu+caffe训练cifar-10数据集
1. 下载cifar-10数据库 ciffar-10数据集包含10种物体分类,50000张训练图片,10000张测试图片. 在终端执行指令下载cifar-10数据集(二进制文件): cd ~/caff ...
- Java-MyBatis:MyBatis 中 in 的用法
ylbtech-Java-MyBatis-杂项:MyBatis 中 in 的用法 1.返回顶部 1. foreach的主要用在构建in条件中,它可以在SQL语句中进行迭代一个集合.foreach元 ...
- element-ui自定义table表头,修改列标题样式
elementUI table表格一般的样式是这样的: 但是要改变表头是比较麻烦的一个事情,但是往往有些项目是需要的比如改成如下样式: 一般直接改起来挺麻烦,好在官网提供了一个方法:render-he ...
- Scrapy Architecture overview--官方文档
原文地址:https://doc.scrapy.org/en/latest/topics/architecture.html This document describes the architect ...
- SQL Server 从字符串中提取中文、英文、数字
--[提取中文] IF OBJECT_ID('dbo.fun_getCN') IS NOT NULL DROP FUNCTION dbo.fun_getCN GO create function db ...
- 欢迎来到SQL学院
给学习SQL的同学的福利@ http://sqlschool.modeanalytics.com/ 第一部分 学习SQL 本教程是专为那些想用数据回答问题的人们而设计的.从很大程度上讲,SQL是数据分 ...
- GIT 常用方法
代码提交顺序: conmmit(提交代码到本地仓库) --->>> pull(将本地仓库代码合并) ---->>> push(将本地合并后的代码提交到 ...
- C++头文件一览
C++头文件一览 C.传统 C++ #include <assert.h> 设定插入点#include <ctype.h> 字符处理#include <errno.h&g ...
- javascript中封装scoll()方法
function scroll() { var scrollTop = window.pageYOffset || document.documentElement.scrollTop || docu ...
- python3 将两个列表生成一个字典
需求: 存在两个list如下 list1 = ["one", "two", "three"] list2 = ["1", ...