當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。