首页 > 编程语言 > 详细

c++——vector

时间:2020-01-14 22:11:40      阅读:98      评论:0      收藏:0      [点我收藏+]

初始化、元素处理

 1 #include <iostream>
 2 #include <vector>
 3 using namespace std;
 4 
 5 int main(){
 6 vector<int> v{1,2,3,4,5};
 7 for(auto &i:v)
 8     i*=i;
 9 for(auto i:v)
10     cout<<i<<" ";
11 cout<<endl;
12 }

技术分享图片

 

统计区间内元素数量

 1 #include <iostream>
 2 #include <vector>
 3 using namespace std;
 4 
 5 int main(){
 6 vector<unsigned> scores(11,0);
 7 unsigned grade;
 8 while(cin >> grade){
 9     if(grade <= 100)
10         ++scores[grade/10];
11 }
12 for(auto i:scores)
13     cout<<i<<" ";
14 cout<<endl;
15 }

技术分享图片

 

不得通过下标访问不存在的元素(错误写法)

1 int main(){
2 vector<int> v;
3 cout << v[0];
4 }

技术分享图片

 

通过迭代器访问元素

 1 #include <iostream>
 2 #include <vector>
 3 #include <string>
 4 using namespace std;
 5 
 6 int main(){
 7 string s("some thing");
 8 if(s.begin() != s.end()){
 9     auto it = s.begin();
10     *it = toupper(*it);
11 }
12 cout<<s<<endl;
13 }

技术分享图片

 

 将第一个单词改为大写

 1 #include <iostream>
 2 #include <vector>
 3 #include <string>
 4 using namespace std;
 5 
 6 int main(){
 7 string s = "some thing";
 8 for(auto it = s.begin(); it != s.end() && !isspace(*it); ++it)
 9     *it = toupper(*it);
10 cout << s << endl;
11 }

技术分享图片

c++——vector

原文:https://www.cnblogs.com/cxc1357/p/12194276.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!