linux下练习 c++ 容器的vector的特性

本文涉及的产品
容器服务 Serverless 版 ACK Serverless,317元额度 多规格
容器镜像服务 ACR,镜像仓库100个 不限时长
容器服务 Serverless 版 ACK Serverless,952元额度 多规格
简介: //vector.cpp /* vector的特性 当前容量:.capacity() 约定容量:.reserve() 下标:.operator[](i) ,.

//vector.cpp

/*
vector的特性
当前容量:.capacity()
约定容量:.reserve()
下标:.operator[](i) ,.at(i) 越界抛出异常
*/
#include<iostream>
using namespace std;
#include<vector>
#include<exception>
#include<typeinfo>
#include "print.h"

void print(const vector< vector<int> >& v)//相当于二维数组
{
	for(int i=0;i<v.size();i++)
	{
		for(int j=0;j<v[i].size();j++)
			cout<<v[i][j]<<' ';
		cout<<endl;
	}
}
int main()
{
	vector<double> vt,vt2;//默认容量成倍增长,4,8,16……
	
	for(int i=1;i<10;i++)
	{
		vt.push_back(i+0.2);
		cout<<vt.size()<<'/'<<vt.capacity()<<' ';
	}
	cout<<endl;
	vt2.reserve(9);//只分配这么多,不成倍增长
	for(int i=1;i<10;i++)
	{
		vt2.push_back(i+0.3);
		cout<<vt2.size()<<'/'<<vt2.capacity()<<' ';
	}
	cout<<endl;
	vt.at(3)=30.50;//修改值
	vt[4]=40.70;
	try
	{
		for(int i=0;i<vt.size();i++)
			cout<<vt.at(i)<<' ';
		cout<<endl;
	}
	catch(exception& e)
	{
		cout<<"\n异常:"<<e.what()<<endl;
		cout<<"类型:"<<typeid(e).name()<<endl;
	}
	int m=3,n=5;
	vector< vector<int> > vvi(m,vector<int>(n));//二维vector
	vvi.resize(m+3);
	vvi[1].assign(9,3);
	vvi[5].assign(4,5);
	print(vvi);
	
}

/*
template <typename T>
void show(T a[],int n);
template <typename T>
void show(const vector<T>& vt);
*/


//print.h

//print.h

#include <iostream>

using namespace std;

#ifndef print_fun

#define print_fun

template<typename T>

///显示序列数据

void print(T b,T e,char c=' ')

{

	bool isExit=false;

	while (b!=e)

	{

		cout<<*b++<<c;

		isExit=true;

	}

	if(isExit) cout<<endl;



}

#endif


 

 

相关文章
|
1月前
|
Ubuntu 安全 Linux
|
1月前
|
存储 搜索推荐 C++
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器2
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器
51 2
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器2
|
1月前
|
存储 C++ 索引
【C++打怪之路Lv9】-- vector
【C++打怪之路Lv9】-- vector
21 1
|
1月前
|
安全 测试技术 C++
【C++篇】从零实现 C++ Vector:深度剖析 STL 的核心机制与优化2
【C++篇】从零实现 C++ Vector:深度剖析 STL 的核心机制与优化
62 6
|
1月前
|
安全 测试技术 C++
【C++篇】从零实现 C++ Vector:深度剖析 STL 的核心机制与优化1
【C++篇】从零实现 C++ Vector:深度剖析 STL 的核心机制与优化
60 7
|
1月前
|
编译器 C++
【C++】—— vector模拟实现
【C++】—— vector模拟实现
|
1月前
|
存储 C++ 容器
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器1
【C++篇】深度剖析C++ STL:玩转 list 容器,解锁高效编程的秘密武器
54 5
|
1月前
|
编译器 C语言 C++
【C++篇】解密 STL 动态之魂:全面掌握 C++ vector 的高效与优雅
【C++篇】解密 STL 动态之魂:全面掌握 C++ vector 的高效与优雅
51 3
|
1月前
|
存储 编译器 C++
【C++篇】揭开 C++ STL list 容器的神秘面纱:从底层设计到高效应用的全景解析(附源码)
【C++篇】揭开 C++ STL list 容器的神秘面纱:从底层设计到高效应用的全景解析(附源码)
56 2
|
1月前
|
C++
【C++】C++ STL探索:Vector使用与背后底层逻辑(三)
【C++】C++ STL探索:Vector使用与背后底层逻辑
下一篇
无影云桌面