当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ list end()用法及代码示例


list::end()是C++ STL中的内置函数,用于使迭代器经过最后一个元素。过去的最后一个元素意味着end()函数返回的迭代器将迭代器返回到列表容器中最后一个元素之后的元素。它不能用于修改元素或列表容器。

此函数本质上与list::begin()函数一起用于设置范围。

用法:


list_name.end() 

参数:该函数不接受任何参数,它仅返回迭代器以超过最后一个元素。

返回值:此函数将迭代器返回到列表最后一个元素之后的元素。

以下示例程序旨在说明list::end()函数。

// CPP program to illustrate the 
// list::end() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // Creating a list 
    list<int> demoList; 
  
    // Add elements to the List 
    demoList.push_back(10); 
    demoList.push_back(20); 
    demoList.push_back(30); 
    demoList.push_back(40); 
  
    // using end() to get iterator  
    // to past the last element 
    list<int>::iterator it = demoList.end(); 
  
    // This will not print the last element 
    cout << "Returned iterator points to : " << *it << endl; 
  
    // Using end() with begin() as a range to 
    // print all of the list elements 
    for (auto itr = demoList.begin(); 
         itr != demoList.end(); itr++) { 
        cout << *itr << " "; 
    } 
  
    return 0; 
}
输出:
Returned iterator points to : 4
10 20 30 40

注意:此函数以恒定的时间复杂度工作。



相关用法


注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 list end() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。