码迷,mamicode.com
首页 > 编程语言 > 详细

C++:迭代器(iterator)使用的几点

时间:2020-03-22 17:42:33      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:ace   iostream   函数   stream   位置   iter   end   png   空白   

#include <iomanip>
#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;
using std::vector;

int main()
{
    string word("asdfgh"); //初始化字符串word
    vector<string>ivec(10,"asdfgh");//ivec包含了10个元素
    while (cin >> word) //遇到空白停止
    {
        /*
        begin 成员函数返回指向容器中第一个元素;
        end 成员函数返回的不是指向最后一个元素的迭代器,而是指向最后一个元素后面的位置的迭代器;
        
        transform(first1,last1,first2,result,binary_op);
        first1是第一个容器的首迭代器,last1为第一个容器的末迭代器,
        first2为第二个容器的首迭代器,result为存放结果的容器;
        */
        transform(word.begin(), word.end(), ivec.begin(), toupper);
        //ivec.push_back(word);
    }
    for (auto& i : ivec) //i是string类型
    {
        cout << i << endl;
    }
}

tansform函数将迭代器区间[first,last)中元素,执行一元函数(有一个输入变量)对象op操作,交换后的结果放在[result,result+(last-first))区间中。

ivec.size = 10; 

word.size根据输入而定;

技术图片

transform 将ivec区间【0,1】的元素替换
将小写字符串转换为大写并逐行输出:
#include <iomanip>
#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;
using std::vector;

int main()
{
    string word("asdfgh"); //初始化字符串word
    vector<string>ivec;
    while (cin >> word) //遇到空白停止
    {

        transform(word.begin(), word.end(), word.begin(), toupper);
        ivec.push_back(word);
    }
    for (auto& i : ivec) //i是string类型
    {
        cout << i << endl;
    }
}

技术图片

 

C++:迭代器(iterator)使用的几点

标签:ace   iostream   函数   stream   位置   iter   end   png   空白   

原文地址:https://www.cnblogs.com/chenzexin/p/12546869.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!