📌  相关文章
📜  C ++ STL中的array :: crbegin()和array :: crend()

📅  最后修改于: 2021-06-01 02:07:31             🧑  作者: Mango

  1. array :: crbegin()是C++ STL中的内置函数,它返回一个常量反向迭代器,该迭代器指向容器中的最后一个元素。

    句法:

    array_name.crbegin()

    参数:该函数不接受任何参数。

    返回值:该函数返回一个反向迭代器,指向容器中的最后一个元素。

    程序演示array :: crbegin()方法:

    程序1:

    // CPP program to illustrate
    // the array::crbegin() function
    #include 
    using namespace std;
    int main()
    {
        // array initialisation
        array arr = { 1, 5, 2, 4, 7 };
      
        // prints the last element
        cout << "The last element is " << *(arr.crbegin()) << endl;
      
        // prints all the elements
        cout << "The array elements in reverse order are:\n";
        for (auto it = arr.crbegin(); it != arr.crend(); it++)
            cout << *it << " ";
      
        return 0;
    }
    
    输出:
    The last element is 7
    The array elements in reverse order are:
    7 4 2 5 1
    
  2. array :: crend()是C++ STL中的内置函数,该函数返回一个常量反向迭代器,该迭代器指向数组容器中第一个元素之前的理论元素。

    句法:

    array_name.crend()

    参数:该函数不接受任何参数。

    返回值:该函数返回一个常量反向迭代器,该迭代器指向数组容器中第一个元素之前的理论元素。

    程序演示array :: crend()方法:

    程序1:

    // CPP program to illustrate
    // the array::crend() function
    #include 
    using namespace std;
      
    int main()
    {
        array arr = { 1, 5, 2, 4, 7 };
      
        // prints all the elements
        cout << "The array elements in reverse order are:\n";
        for (auto it = arr.crbegin(); it != arr.crend(); it++)
            cout << *it << " ";
        return 0;
    }
    
    输出:
    The array elements in reverse order are:
    7 4 2 5 1
    
想要从精选的最佳视频中学习并解决问题,请查看有关从基础到高级C++的C++基础课程以及有关语言和STL的C++ STL课程。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”