C++ 基礎(chǔ)教程

C++ 流程控制

C++ 函數(shù)

C++ 數(shù)組 & 字符串

C++ 數(shù)據(jù)結(jié)構(gòu)

C++ 類 & 對象

C++ 指針

C++ 繼承

C++ STL 教程

C++ 參考手冊

C++ set cbegin() 使用方法及示例

C++ STL Set(集合)

C ++ set cbegin()函數(shù)用于返回一個(gè)常量迭代器,該迭代器指向set容器的第一個(gè)元素。

語法

const_iterator cbegin() const noexcept;  //從 C++ 11開始

一個(gè)常量性是一個(gè)迭代器,它指向含量恒定。

參數(shù)

沒有

返回值

它返回一個(gè)const_iterator指向集合的第一個(gè)元素。

復(fù)雜性

不變

迭代器有效性

沒有變化。

數(shù)據(jù)爭用

容器被訪問。

同時(shí)訪問集合的元素是安全的。

異常安全

該成員函數(shù)永遠(yuǎn)不會(huì)引發(fā)異常。

實(shí)例1

讓我們看一下cbegin()函數(shù)的簡單示例:

#include <iostream>
#include <set>

using namespace std;

int main ()
{
  set<string> myset= {"Java", "C++","SQL"};

  // 顯示內(nèi)容:
  for (auto it = myset.cbegin(); it != myset.cend(); ++it)
    cout <<*it << '\n';
    
  return 0;
}

輸出:

C++
Java
SQL

在上面的示例中,cbegin()函數(shù)用于返回一個(gè)常量迭代器,該迭代器指向myset集中的第一個(gè)元素。

實(shí)例2

讓我們看一個(gè)簡單的實(shí)例:

#include <set>  
#include <iostream>  
  
int main( )  
{  
   using namespace std;  
   set <int> s1;  
   set <int>::iterator s1_Iter;  
   set <int>::const_iterator s1_cIter;  
  
   s1.insert( 1 );  
   s1.insert( 2 );  
   s1.insert( 3 );  
  
   s1_Iter = s1.begin( );  
   cout << "s1的第一個(gè)元素是 " << *s1_Iter << endl;  
  
   s1_Iter = s1.begin( );  
   s1.erase( s1_Iter );  
  
   // 以下兩行可能會(huì)出錯(cuò),因?yàn)榈魇莄onst  
   // s1_cIter = s1.begin( );  
   // s1.erase( s1_cIter );  
  
   s1_cIter = s1.begin( );  
   cout << "s1的第一個(gè)元素現(xiàn)在是 " << *s1_cIter << endl;  
}

輸出:

s1的第一個(gè)元素是 1
s1的第一個(gè)元素現(xiàn)在是 2

實(shí)例3

讓我們看一個(gè)簡單的示例,使用while循環(huán)遍歷集合:

#include <iostream>
#include <set>
#include <string>
int main()
{
    using namespace std;
 
      set<string> myset = {"Robin","Dolly", "John","Nikita"};

    set<string>::const_iterator it; // 聲明一個(gè)迭代器

    it = myset.cbegin(); // 將其分配給向量的開頭

    while (it != myset.cend())
    {
        cout << *it<< "\n"; 
    // 打印它所指向的元素的值
        ++it; // 并迭代到下一個(gè)元素
    }
    cout << endl;
}

輸出:

Dolly
John
Nikita
Robin

在上面的示例中,cbegin()函數(shù)用于返回指向myset集合中第一個(gè)元素的迭代器。

實(shí)例4

讓我們看另一個(gè)簡單的實(shí)例:

#include <iostream>
#include <string>
#include <set>

using namespace std;

int main ()
{
  set<int> number = {400, 350, 465, 290, 410};

   cout << "遞增次序: " << '\n';
   cout<<"______________________\n";
   
  set<int>::const_iterator cit;
  for (cit=number.cbegin(); cit!=number.cend(); ++cit)
    cout << *cit<< '\n';

    auto low = number.cbegin();
    auto high = number.rbegin();
    
    cout << "\n最小的數(shù)是: "<< *low <<endl;
    cout<< "最大的數(shù)是: "<<*high <<endl;

  return 0;
  }

輸出:

遞增次序: 
______________________
290
350
400
410
465
最小的數(shù)是: 290
最大的數(shù)是: 465

在上面的示例中,cbegin()函數(shù)用于返回指向myset集合中第一個(gè)元素的迭代器。

C++ STL Set(集合)

丰满人妻一级特黄a大片,午夜无码免费福利一级,欧美亚洲精品在线,国产婷婷成人久久Av免费高清