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

C++ STL Set(集合)

C ++ set end()函数的作用是:返回一个迭代器,该迭代器位于集合的最后一个元素的旁边。

语法

iterator end();                            //直到 C ++ 11
const_iterator end() const;                //直到 C ++ 11
iterator end() noexcept;              //从 C++ 11开始
const_iterator end() const noexcept;  //从 C++ 11开始

参数

没有

返回值

它返回一个迭代器,该迭代器指向集合的最后一个元素。

复杂性

不变。

迭代器有效性

没有变化。

数据争用

同时访问集合的元素是安全的。

无论是非const版本还是const版本都不能访问该容器。

异常安全

该成员函数永远不会引发异常。

实例1

让我们看一下end()函数的简单示例:

#include <iostream>
#include <set>

using namespace std;

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

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

  return 0;
}

输出:

C++
Java
SQL

在上面的示例中,end()函数用于返回指向myset集合中最后一个元素旁边的迭代器。

实例2

让我们看一个简单的示例,使用for-each循环遍历集合:

#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

实例3

让我们看一个简单的示例,使用while循环遍历集合:

#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()) 
    {
            cout << *it << "\n"; 
            
            // 打印它所指向的元素的值
            
            ++it; // 并迭代到下一个元素
    }
 
    cout << endl;
}

输出:

myset的元素是: 
Aman
Deep
Nikita
Priya
Suman

在上面的示例中,end()函数用于返回指向myset集合中最后一个元素旁边的迭代器。

实例4

让我们看一个简单的实例:

#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元素的结尾
    if (result != c.end()) {  
        cout << "Element found: "<< *result; 
        cout << endl;  
    } else {  
        cout << "未找到元素。" << endl;  
    }  
    
  return 0;
}

输出:

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


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

在上面的示例中,end()函数用于返回指向myset集合中最后一个元素旁边的迭代器。

C++ STL Set(集合)