1.STL的基本概念
2.vector存放内置数据类型
#include <iostream>
using namespace std;
#include <vector>
#include <algorithm>
void MyPrint(int val)
{
cout << val << endl;
}
void test01()
{
//创建vector容器对象,并且通过模板参数指定容器中存放的数据类型
vector<int> v;
//向容器在放数据
v.push_back(10);
v.push_back(20);
v.push_back(30);
v.push_back(40);
//每一个容器都有自己的迭代器,迭代器是用来遍历容器中的元素
//v.begin()返回迭代器,这个迭代器指向容器中第一个数据
//v.end()返回迭代器,这个迭代器指向容器元素的最后一个元素的下一个位置
//vector<int>::iterator 拿到vector<int>这种容器的迭代类型
//第一种遍历方式:
vector<int>::iterator itBegin = v.begin();
vector<int>::iterator itEnd = v.end();
while(itBegin!=itEnd)
{
cout << *itBegin << endl;
itBegin++;
}
cout << endl;
//第二种遍历方式
for (vector<int>::iterator it = v.begin(); it != v.end(); it++)
{
cout << *it << endl;
}
cout << endl;
//第三种遍历方式:
//使用STL提供标准遍历算法 头文件 algorithm
for_each(v.begin(), v.end(), MyPrint);
}
//*************************************
int main() {
test01();
//**************************************
system("pause");
return 0;
}
3.vector存放自定义数据类型
#include <iostream>
using namespace std;
#include <vector>
//vector存放自定义数据类型
class Person
{
public:
Person(string name,int age)
{
m_Name = name;
m_Age = age;
}
string m_Name;
int m_Age;
};
//存放对象
void test01()
{
vector<Person>v;
//创建数据
Person p1("aaa", 10);
Person p2("bbb", 20);
Person p3("ccc", 30);
v.push_back(p1);
v.push_back(p2);
v.push_back(p3);
for (vector<Person>::iterator it = v.begin(); it != v.end(); it++)
{
cout << "Name:" << (*it).m_Name << "\tAge:" << (*it).m_Age << endl; //方式一
cout << "Name:" << it->m_Name << "\tAge:" << it->m_Age << endl; //方式二:利用指针
}
cout << endl;//换行
}
//放对象指针
void test02()
{
vector<Person*>v;
//创建数据
Person p1("aaa", 10);
Person p2("bbb", 20);
Person p3("ccc", 30);
v.push_back(&p1);
v.push_back(&p2);
v.push_back(&p3);
for (vector<Person*>::iterator it = v.begin(); it != v.end(); it++)
{
cout << ":: Name:" << (*it)->m_Name << "\tAge:" << (*it)->m_Age << endl;
}
cout << endl;
}
//*************************************
int main() {
test01();
test02();
//**************************************
system("pause");
return 0;
}
4.容器嵌套容器
#include <iostream>
using namespace std;
#include <vector>
//容器嵌套容器
void test01()
{
vector<vector<int>>v; //v是按照变量名规则可以随便定义的,
//与下面27行的v.begin()相对应
vector<int>v1;
vector<int>v2;
vector<int>v3;
for (int i = 0; i < 3; i++)
{
v1.push_back(i + 1);
v2.push_back(i + 2);
v3.push_back(i + 3);
}
//将容器元素插入到vector v中
v.push_back(v1);
v.push_back(v2);
v.push_back(v3);
for (vector<vector<int>>::iterator vit = v.begin(); vit != v.end(); vit++)
{
for (vector<int>::iterator it = (*vit).begin(); it != (*vit).end(); it++)
{
cout << *it << "\t";
}
cout << endl;
}
}
//*************************************
int main() {
test01();
//test02();
//**************************************
system("pause");
return 0;
}