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


C++ set cbegin()、cend()用法及代碼示例


  1. set::cbegin()是C++ STL中的內置函數,該函數返回指向容器中第一個元素的常量迭代器。迭代器不能用於修改set容器中的元素。可以增加或減少迭代器以遍曆集合。

    用法:

    constant_iterator set_name.cegin()
    

    參數:該函數不接受任何參數。

    返回值:該函數返回一個常量迭代器,該迭代器指向容器中的第一個元素。


    程序來演示set::cegin()方法。

    // CPP program to demonstrate the 
    // set::cbegin() function 
    #include <bits/stdc++.h> 
    using namespace std; 
    int main() 
    { 
      
        int arr[] = { 14, 12, 15, 11, 10 }; 
      
        // initializes the set from an array 
        set<int> s(arr, arr + 5); 
      
        // prints all elements in set 
        for (auto it = s.cbegin(); it != s.cend(); it++) 
            cout << *it << " "; 
      
        return 0; 
    }
    輸出:
    10 11 12 14 15
    
  2. set::cend()是C++ STL中的內置函數,該函數返回一個常量迭代器,該迭代器指向容器中最後一個元素之後的位置。迭代器不能用於修改set容器中的元素。可以增加或減少迭代器以在集合中進行相應遍曆。

    用法:

    constant_iterator set_name.cend()
    

    參數:該函數不接受任何參數。

    返回值:該函數返回一個常量迭代器,該迭代器指向容器中容器中最後一個元素之後的位置。

    程序來演示set::cend()方法。

    // CPP program to demonstrate the 
    // set::cend() function 
    #include <bits/stdc++.h> 
    using namespace std; 
    int main() 
    { 
      
        int arr[] = { 14, 12, 15, 11, 10 }; 
      
        // initializes the set from an array 
        set<int> s(arr, arr + 5); 
      
        // prints all elements in set 
        for (auto it = s.cbegin(); it != s.cend(); it++) 
            cout << *it << " "; 
      
        return 0; 
    }
    輸出:
    10 11 12 14 15
    


相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 set cbegin() and cend() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。