📜  C++ STL中的list :: begin()和list :: end()

📅  最后修改于: 2021-05-30 04:23:00             🧑  作者: Mango

列表是C++中用于以非连续方式存储数据的容器。通常,数组和向量本质上是连续的,因此,与列表中的插入和删除选项相比,插入和删除操作的成本更高。

list :: begin()

begin()函数用于返回指向列表容器的第一个元素的迭代器。它与front()函数不同,因为front函数返回对容器第一个元素的引用,而begin()函数返回对容器第一个元素的双向迭代器
句法 :

listname.begin()
Parameters :
No parameters are passed.
Returns :
This function returns a bidirectional
iterator pointing to the first element.

例子:

Input  : mylist{1, 2, 3, 4, 5};
         mylist.begin();
Output : returns an iterator to the element 1

Input  : mylist{8, 7};
         mylist.begin();
Output : returns an iterator to the element 8

错误和异常
1.它没有异常抛出保证。
2.传递参数时显示错误。

CPP
// CPP program to illustrate
// Implementation of begin() function
#include 
#include 
using namespace std;
 
int main()
{
    // declaration of list container
    list mylist{ 1, 2, 3, 4, 5 };
 
    // using begin() to print list
    for (auto it = mylist.begin(); it !=
                            mylist.end(); ++it)
        cout << ' ' << *it;
    return 0;
}


CPP
// CPP program to illustrate
// Implementation of end() function
#include 
#include 
using namespace std;
 
int main()
{
    // declaration of list container
    list mylist{ 1, 2, 3, 4, 5 };
 
    // using end() to print list
    for (auto it = mylist.begin(); it !=
                                mylist.end(); ++it)
        cout << ' ' << *it;
    return 0;
}


输出:

1 2 3 4 5

时间复杂度: O(1)

清单::: end()

end()函数用于返回指向列表容器最后一个元素的迭代器。它与back()函数不同,因为back()函数返回对容器最后一个元素的引用,而end()函数返回对容器最后一个元素的双向迭代器
句法 :

listname.end()
Parameters :
No parameters are passed.
Returns :
This function returns a bidirectional
iterator pointing to the last element.

例子:

Input  : mylist{1, 2, 3, 4, 5};
         mylist.end();
Output : returns an iterator to the element 5

Input  : mylist{8, 7};
         mylist.end();
Output : returns an iterator to the element 7


错误和异常
1.它没有异常抛出保证。
2.传递参数时显示错误。

CPP

// CPP program to illustrate
// Implementation of end() function
#include 
#include 
using namespace std;
 
int main()
{
    // declaration of list container
    list mylist{ 1, 2, 3, 4, 5 };
 
    // using end() to print list
    for (auto it = mylist.begin(); it !=
                                mylist.end(); ++it)
        cout << ' ' << *it;
    return 0;
}

输出:

1 2 3 4 5

时间复杂度: O(1)

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”