C++ 基礎(chǔ)教程

C++ 流程控制

C++ 函數(shù)

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

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

C++ 類 & 對象

C++ 指針

C++ 繼承

C++ STL 教程

C++ 參考手冊

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

C++ STL Set(集合)

C ++ set begin()函數(shù)用于返回引用set容器的第一個元素的迭代器。

語法

iterator begin();                 //直到 C ++ 11
const_iterator begin() const;          //直到 C ++ 11
iterator begin() noexcept;          //從 C++ 11開始
const_iterator begin() const noexcept;  //從 C++ 11開始

參數(shù)

沒有

返回值

它返回一個指向集合的第一個元素的迭代器。

復(fù)雜性

不變。

迭代器有效性

沒有變化。

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

容器被訪問。常量版本和非常量版本都不會修改容器。

異常安全

此函數(shù)從不拋出異常。

實(shí)例1

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

#include <iostream>
#include <set>

using namespace std;

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

  // show content:
  cout<<"myset的內(nèi)容是: "<<endl;
  for (set<string>::iterator it=myset.begin(); it!=myset.end(); ++it)
    cout << *it<< '\n';

  return 0;
}

輸出:

myset的內(nèi)容是: 
C++
Java
SQL

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

實(shí)例2

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

#include <iostream>
#include <set>

using namespace std;

int main()
{
  set<int> c;
  c.insert(5);
  c.insert(2);
  c.insert(4);
  c.insert(1);
  c.insert(0);
  c.insert(9);

  set<int>::iterator i = c.begin();
  while (i != c.end())
  cout << *i++ << " ";
  cout << endl;
}

輸出:

0 1 2 4 5 9

實(shí)例3

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

#include <iostream>
#include <set>
#include <string>
int main()
{
    using namespace std;
 
     set<string> myset = { "Nikita","Deep","Priya","Suman","Aman" };

       cout<<"myset的元素是: "<<endl;
    set<string>::const_iterator it; // 聲明一個迭代器

    it = myset.begin(); // 把它賦給集合的開始

    while (it != myset.end()) // 雖然還沒有結(jié)束
    {
         cout << *it << "\n"; 
          // 打印它指向的元素的值
         ++it; // 并迭代到下一個元素
    }

    cout << endl;
}

輸出:

myset的元素是: 
Aman
Deep
Nikita
Priya
Suman

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

實(shí)例4

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

#include <set>  
#include <iostream>  
  
int main( )  
{  
   using namespace std;  
   set <int> s1;  
   set <int>::iterator s1_Iter;    
  
   s1.insert( 1 );  
   s1.insert( 2 );  
   s1.insert( 3 );  
  
   s1_Iter = s1.begin( );  
   cout << "s1的第一個元素是 " << *s1_Iter << endl;  
  
   s1_Iter = s1.begin( );  
   s1.erase( s1_Iter );  

   s1_Iter = s1.begin( );  
   cout << "現(xiàn)在s1的第一個元素是 " << *s1_Iter << endl;  
}

輸出:

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

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

C++ STL Set(集合)

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