C++ 提高教程 STL vector容器-预留空间

Posted 行码阁119

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ 提高教程 STL vector容器-预留空间相关的知识,希望对你有一定的参考价值。

 

# include<iostream>
#include<vector>
# include<algorithm>
# include<string>
using namespace std;

void printVector(vector<int>& v)
{
	for (vector<int>::iterator it = v.begin(); it != v.end(); it++)
	{
		cout << *it << " ";
	}
	cout << endl;
}
//基本使用
void test01()
{
	vector<int>v1;
	int num = 0;//统计其开辟次数
	int* p = NULL;
	//利用reserve来预留空间
	v1.reserve(10000);
	for (int i = 0; i < 10000;i++)
	{
		v1.push_back(i);

		if (p != &v1[0])
		{
			p = &v1[0];
			num++;
		}

	}
	cout << num << endl;
	//printVector(v1);
}



int main()
{
	test01();
	system("pause");
	return 0;
}

以上是关于C++ 提高教程 STL vector容器-预留空间的主要内容,如果未能解决你的问题,请参考以下文章

C++ 提高教程 STL vector容器-数据存取

C++ 提高教程 STL --vector容器-赋值操作

C++ 提高教程 STL vector容器-预留空间

C++ 提高教程 STL Vector容器 -构造函数

C++ 提高教程 STL -容器算法迭代器初识

C++提高编程STL-vector容器