题解 | #迭代器遍历容器#

迭代器遍历容器

https://www.nowcoder.com/practice/0f7ab22e60ee4574a9d9c81412b26595

#include <bits/stdc++.h>
// write your code here......

using namespace std;

vector <int> v;

int main() {
    int x;
    for(int i=0;i<5;i++){
        cin>>x;
        v.push_back(x);
    }
    // write your code here......
    
    for(vector<int>::iterator i = v.begin();i!=v.end();i++){
        cout<<*i<<" ";
    }
    puts("");

    for(vector<int>::iterator i = v.end()-1;i!=v.begin()-1;i--){
        cout<<*i<<" ";
    }
    puts("");

    return 0;
}

全部评论

相关推荐

产品经理傅立叶:1.建议把个人信息码一下 2.简历的排版还得优化一下,看上去有点乱,另外有一个实习经历实习时间好像多写了一个; 3.实习产出要量化
点赞 评论 收藏
分享
12-07 16:16
已编辑
四川大学 Java
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务