C++ 基礎(chǔ)教程

C++ 流程控制

C++ 函數(shù)

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

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

C++ 類 & 對(duì)象

C++ 指針

C++ 繼承

C++ STL 教程

C++ 參考手冊(cè)

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

C++ STL Set(集合)

C ++ set end()函數(shù)的作用是:返回一個(gè)迭代器,該迭代器位于集合的最后一個(gè)元素的旁邊。

語(yǔ)法

iterator end();                            //直到 C ++ 11
const_iterator end() const;                //直到 C ++ 11
iterator end() noexcept;              //從 C++ 11開(kāi)始
const_iterator end() const noexcept;  //從 C++ 11開(kāi)始

參數(shù)

沒(méi)有

返回值

它返回一個(gè)迭代器,該迭代器指向集合的最后一個(gè)元素。

復(fù)雜性

不變。

迭代器有效性

沒(méi)有變化。

數(shù)據(jù)爭(zhēng)用

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

無(wú)論是非const版本還是const版本都不能訪問(wèn)該容器。

異常安全

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

實(shí)例1

讓我們看一下end()函數(shù)的簡(jiǎn)單示例:

#include <iostream>
#include <set>

using namespace std;

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

  // 顯示內(nèi)容:
  for (set<string>::iterator it=myset.begin(); it!=myset.end(); ++it){
    cout << *it<< '\n';
  
  }

  return 0;
}

輸出:

C++
Java
SQL

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

實(shí)例2

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

#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(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

讓我們看一個(gè)簡(jiǎn)單的示例,使用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; // 聲明一個(gè)迭代器

    it = myset.begin(); // 將其分配給集合的開(kāi)始

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

輸出:

myset的元素是: 
Aman
Deep
Nikita
Priya
Suman

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

實(shí)例4

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

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


using namespace std;

int main ()
{
    int val;
    set<int> c = {10,20,30,40,50};
 
    cout<<"輸入值以查找: ";
    cin>>val;

    auto result = c.find(val);  
    
    //查找直到set元素的結(jié)尾
    if (result != c.end()) {  
        cout << "Element found: "<< *result; 
        cout << endl;  
    } else {  
        cout << "未找到元素。" << endl;  
    }  
    
  return 0;
}

輸出:

輸入值以查找: 60
未找到元素。


輸入值以查找: 30
Element found: 30

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

C++ STL Set(集合)

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