STL之vector
2020-04-06 16:00:33来源:博客园 阅读 ()
STL之vector
vector即动态数组,也叫向量。
直接上代码!
#include<iostream> #include<vector> #include<algorithm> using namespace std; int main() { //构造 vector<int> v1(3); //构造一个大小为3的向量,不赋值默认为0 for (vector<int>::iterator it = v1.begin(); it < v1.end(); it++) //输出:000 cout << *it; cout << endl; vector<int> v2{ 2,6,8 }; //赋值构造 for (vector<int>::iterator it = v2.begin(); it < v2.end(); it++) //输出:268 cout << *it; cout << endl << v2.size() << endl; //size=3 //重置大小 v2.resize(4); for (vector<int>::iterator it = v2.begin(); it < v2.end(); it++) //输出:2680 cout << *it; cout << endl << v2.size() << endl; //size=4 //元素获取 cout << v2[1] << endl; //不检查下标是否越界,但速度较快 cout << v2.at(1) << endl; //检查下标是否越界 cout << v2.front() << endl; //输出:2 cout << v2.back() << endl; //输出:0 //追加 v2.push_back(9); for (vector<int>::iterator it = v2.begin(); it < v2.end(); it++) //输出:26809 cout << *it; cout << endl << v2.size() << endl; //size:5 //删除 v2.erase(v2.end() - 2); for (vector<int>::iterator it = v2.begin(); it < v2.end(); it++) //输出:2689 cout << *it; cout << endl << v2.size() << endl; //size:4 v2.clear(); for (vector<int>::iterator it = v2.begin(); it < v2.end(); it++) //无输出 cout << *it; cout << endl << v2.size() << endl; //size:0 //排序 v2 = { 2,6,8,3,6,9 }; sort(v2.begin(), v2.end()); //从小到大排序 for (vector<int>::iterator it = v2.begin(); it < v2.end(); it++) //输出:236689 cout << *it; cout << endl; sort(v2.begin(), v2.end(),greater<int>()); //从大到小排序 for (vector<int>::iterator it = v2.begin(); it < v2.end(); it++) //输出:986632 cout << *it; cout << endl; return 0; }
原文链接:https://www.cnblogs.com/love-ziji/p/12633211.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- C++ 模板类vector 2020-05-31
- C++ 模板类vector 2020-05-30
- C++仿函数 2020-05-16
- STL之list 2020-04-30
- STL之deque 2020-04-29
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash