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

迭代器遍历容器

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;
}

全部评论

相关推荐

10-22 19:18
上海大学 后端
jopajhhdjwnqk:水印都叠杀人书了
点赞 评论 收藏
分享
11-15 17:19
湖南大学 Java
成果成果成果果:这是哪个公司的hr,这么离谱吗,我没见过用性别卡技术岗的,身边女性同学拿大厂offer的比比皆是
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务