• C++ array container reverse_iterator rbegin rend


    #include <iostream>
    #include <uuid/uuid.h>
    #include <time.h>
    #include <array>
    #include <iterator>
    #include <ctime>
    #include <random>
    #include <algorithm>
    
    using namespace std;
    
    void random3();
    
    int main()
    {
        random3();
        return 0;
    }
    
    void random3()
    {
        srand(time(nullptr));
        array<int, 100> arr;
        int len = arr.size();
        for (int i = 0; i < len; i++)
        {
            arr[i] = rand()%10000;
        }
    
        cout << "\n\nBefore sorting!" << endl;
        for (int i = 0; i < len; i++)
        {
            cout << arr[i] << "\t";
        }
    
        cout << endl<<endl;
        std::sort(arr.begin(), arr.end());
        cout<<"\nAftrer sort ascendingly output"<<endl;
        array<int,100>::iterator itr2=arr.begin();
        while(itr2!=arr.end())
        {
            cout<<*itr2<<"\t";
            ++itr2;
        }
        cout<<endl<<endl;
        cout << "\nAfter sort descendingly" << endl;
        array<int,100>::reverse_iterator itr=arr.rbegin();
        while(itr!=arr.rend())
        {
            cout<<*itr<<"\t";
            itr++;
        }
        cout<<endl<<endl;
    }

    Compile as below command

    g++ -g -std=c++2a -I. h1.cpp -o h1 -luuid

    Run ./h1

  • 相关阅读:
    第4周课前测试考试题
    第3周课前测试考试题
    200行自定义异步非阻塞Web框架
    Web框架之Tornado
    redis总结
    Django之ModelForm组件
    Rabbitmq队列
    Git分布式版本控制系统
    Django REST framework
    python之路1
  • 原文地址:https://www.cnblogs.com/Fred1987/p/15686309.html
Copyright © 2020-2023  润新知