cin>>num[i];
for(int i=0;i<5;i++)
cout<<num[i]<<" ";
return 0;
}
//运行结果:
/*
1 2 3 4 5
1
2
3
4
5
Process returned 0 (0x0) execution time : 3.516 s
Press any key to continue.
*/
//第二种源代码:
#include
#include
using namespace std;
int main()
{
vector num (5);
for(int i=0;i<5;i++)
cin>>num[i];
//向数组中插入数字
num.push_back(6);//在向量尾部插入6
//遍历打印
for(int i=0;i<num.size();i++) //.size可以测矢量的长度
cout<<num[i]<<endl;
return 0;
}
/* 运行结果:
1 2 3 4 5
1
2
3
4
5
6
Process returned 0 (0x0) execution time : 5.465 s
Press any key to continue.
*/
// 第三种:
#include
#include
using namespace std;
int main()
{
vector num (5);
for(int i=0;i<5;i++)
cin>>num[i];
//向数组中插入数字
num.push_back(6);//在向量尾部插入6
//遍历打印
//使用迭代器 iterator
//以下是迭代器的基本用法,高能慎用!!!!
vector::iterator it; //得到迭代对象,实际上是一个指针
//it.begin
//从第一个元素迭代
for(it=num.begin();it!=num.end();++it) //如果使用it++,则会有缓存现象,导致效率不高
{
cout<<* it<<endl;
}
return 0;
}
// 运行结果:
/*
2 5 7 9 3
2
5
7
9
3
6
Process returned 0 (0x0) execution time : 4.587 s
Press any key to continue.
*/
//下面演示一下使用快排
#include
#include
#include //算法
using namespace std;
int main()
{
vector num (5);
for(int i=0;i<5;i++)
cin>>num[i];
//向数组中插入数字
num.push_back(6);//在向量尾部插入6
//遍历打印
//使用迭代器 iterator
//以下是迭代器的基本用法,高能慎用!!!!
vector::iterator it; //得到迭代对象,实际上是一个指针
//it.begin
//从第一个元素迭代
for(it=num.begin();it!=num.end();++it) //如果使用it++,则会有缓存现象,导致效率不高
{
cout<<* it<<endl;
}
sort(num.begin(),num.end());
cout<<endl<<endl;
for(it=num.begin();it!=num.end();++it) //如果使用it++,则会有缓存现象,导致效率不高
{
cout<<* it<<endl;
}
return 0;
}
//输出结果:
/*
1 7 9 3 4
1
7
9
3
4
6
1
3
4
6
7
9
Process returned 0 (0x0) execution time : 7.554 s
Press any key to continue.
*/
// 逆序
#include
#include
#include //算法
using namespace std;
int main()
{
vector num (5);
for(int i=0;i<5;i++)
cin>>num[i];
//向数组中插入数字
num.push_back(6);//在向量尾部插入6
//遍历打印
//使用迭代器 iterator
//以下是迭代器的基本用法,高能慎用!!!!
vector::iterator it; //得到迭代对象,实际上是一个指针
//it.begin
//从第一个元素迭代
for(it=num.begin();it!=num.end();++it) //如果使用it++,则会有缓存现象,导致效率不高
{
cout<<* it<<endl;
}
reverse(num.begin(),num.end()); //逆序排序
cout<<endl<<endl;
for(it=num.begin();it!=num.end();++it) //如果使用it++,则会有缓存现象,导致效率不高
{
cout<<* it<<endl;
}
return 0;
}
//输出结果:
1 2 3 4 5
1
2
3
4
5
6
6
5
4
3
2
1
Process returned 0 (0x0) execution time : 8.155 s
Press any key to continue.
*/
3.矢量中的常见函数
==============
clear() | 清除容器中所有数据 |
empty() | 判断容器是否为空 |
size() | 返回容器元素的个数 |
front() | 返回第一个元素 |
insert(pos,num) | 在POS位置插入一个数字 |
pop_back() | 在容器删除最后一个元素 |
push_back() | 在容器末尾加入一个元素 |
resize(num) | 重新设置容器大小 |
begin(),end() | 返回容器首尾元素的迭代器 |
4.从矢量中删除元素
==========
用法示例:
#include
#include
#include //算法
using namespace std;
int main()
{
vector num (5);
for(int i=0;i<5;i++)
cin>>num[i];
num.pop_back();
//遍历打印
//使用迭代器 iterator
//以下是迭代器的基本用法,高能慎用!!!!
vector::iterator it; //得到迭代对象,实际上是一个指针
//it.begin
//从第一个元素迭代
for(it=num.begin();it!=num.end();++it) //如果使用it++,则会有缓存现象,导致效率不高
{
cout<<* it<<endl;
}
return 0;
}
//输出结果:
1 3 5 6 7
1
3
5
6
Process returned 0 (0x0) execution time : 4.096 s
Press any key to continue.
5.清理矢量
==========
用法示例:
#include
#include
#include //算法
using namespace std;
int main()
{
vector num (5);
for(int i=0;i<5;i++)
cin>>num[i];
//遍历打印
//使用迭代器 iterator
//以下是迭代器的基本用法,高能慎用!!!!
vector::iterator it; //得到迭代对象,实际上是一个指针
//it.begin
//从第一个元素迭代
for(it=num.begin();it!=num.end();++it) //如果使用it++,则会有缓存现象,导致效率不高
{
最后
自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。
深知大多数初中级Android工程师,想要提升技能,往往是自己摸索成长,自己不成体系的自学效果低效漫长且无助。
因此我收集整理了一份《2024年Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点!不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门
如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!
由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!
集整理了一份《2024年Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。**
[外链图片转存中…(img-3s74gnE5-1715556699268)]
[外链图片转存中…(img-bdRTY0E6-1715556699270)]
[外链图片转存中…(img-4f7C7j7F-1715556699272)]
[外链图片转存中…(img-FJfAby4z-1715556699273)]
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点!不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门
如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!
由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!