【C++常用算法】STL基础语法学习 | 查找算法

简介: 查找指定元素,如果找到则放回指定元素的迭代器,若未找到则返回结束迭代器。

●find


1.功能描述:


       查找指定元素,如果找到则放回指定元素的迭代器,若未找到则返回结束迭代器。


2.查看find定义下底层代码的函数原型:


7f39ced1125a4777963c625b7dc39088_88adf340c0e44140bee841b291230442.png


3.内置数据类型的查找:


       向deque容器中插入5个元素,使用find去分别查询元素5和元素10是否在容器中。


#include<iostream>
#include<algorithm>
#include<deque>
using namespace std;
void find_func(deque<int>&d)
{
  cout << "输入你要查找的元素:";
  int n; cin >> n;
  deque<int>::iterator p;   //迭代器
  p = find(d.begin(), d.end(), n);  //内置数据类型查找
  if (p != d.end())
  cout << "找到该元素" << endl;
  else
  cout << "未找到该元素" << endl;
}
void text()
{
  deque<int>d;
  d.push_back(1);
  d.push_back(2);
  d.push_back(3);
  d.push_back(4);
  d.push_back(5);
  //内置数据类型的查找
  find_func(d);
}
int main()
{
  text();
}

3032dd6ac0744d0a12e569b1add5bb78_ea15ada0189a43d99614f7a753dc52ab.png

86ccaaa8cf7c7913f6ebe29a21fee275_37a83f7b2f4a469f935825d1c17b5d64.png


4.自定义数据类型的查找


       向deque容器中插入已构造好的5个人,使用find去查询指定姓名和年龄下的这个人是否存在。

#include<iostream>
#include<algorithm>
#include<deque>
#include<string>
using namespace std;
class person {
public:
  string name;
  int age;
  //构造函数(姓名+年龄)
  person(string name, int age)
  {
  this->name = name;
  this->age = age;
  }
  //重载operator== 让底层的find知道如何去对比person的数据类型
  bool operator==(const person &p)
  {
  if (this->name==p.name&&this->age==p.age)
    return 1;
  else
    return 0;
  }
};
void find_func(deque<person>&d)  //指定查找
{
  cout << "请输入要查找的人的姓名:";
  string name; cin >> name;
  cout << "请输入要查找的人的年龄:";
  int age; cin >> age;
  person p_target(name,age);  //通过构造函数将要查找的姓名和年龄
  deque<person>::iterator p;   //迭代器
  p = find(d.begin(), d.end(), p_target);  //查找,将会用到类里面我们重新重载的operator== 
  if (p != d.end())
  cout << "找到该人" <<" "<< p->name << " " << p->age << endl;
  else
  cout << "未找到该人" << endl;
}
void text()
{
  //通过person构造函数去创建5个人
  person p1("张三", 19);
  person p2("李四", 30);
  person p3("王五", 40);
  person p4("赵六", 29);
  person p5("孙七", 20);
  //将这5个人插入deque容器中
  deque<person>d;
  d.push_back(p1);
  d.push_back(p2);
  d.push_back(p3);
  d.push_back(p4);
  d.push_back(p5);
  //进行指定查找
  find_func(d);
}
int main()
{
  text();
}

b82f0779431df8be97824a496b5c49d6_03f5c5e2261a4512aff283c36e66558a.png

3b638f982a325926845a332942d6a24a_287ff3cfa05b4b3da8765232dc543c61.png


●find_if


1.功能描述:


       按照条件去查找元素


2.查看find定义下底层代码的函数原型:


df0c3ca58485d556bce7c203de7df619_4ee2c2556c834144bd61bad9a565c805.png


3.内置数据类型的条件查找:


       向deque容器中插入5个元素,使用find_if去条件查询是否容器中有大于3的元素。

#include<iostream>
#include<deque>
#include<algorithm>
using namespace std;
class search_target_value {
public:
  bool operator()(const int value)
  {
  return value > 3;
  }
};
void find_if_func(deque<int>&d)
{
  deque<int>::iterator p;   //迭代器
  p=find_if(d.begin(), d.end(), search_target_value());  //条件查询
  if (p == d.end())
  cout << "未找到这类元素" ;
  else
  cout << "找到这类元素" << endl;
}
void text()
{
  deque<int>d;
  d.push_back(1);
  d.push_back(2);
  d.push_back(3);
  d.push_back(4);
  d.push_back(5);
  //内置数据类型查找
  find_if_func(d);
}
int main()
{
  text();
}

925ddeef57580bc6e19d90c0072e8b26_add2b583febe4c6ca3a93a66f1fdf3ba.png

4.自定义类型的条件查找:


        向deque容器中插入已构造好的5个人,使用find_if去条件查询年龄大于20下的人是否存在,并且输出这些人的姓名和年龄。

#include<iostream>
#include<deque>
#include<algorithm>
#include<string>
using namespace std;
class person {
public:
  string name;
  int age;
  person(string name,int age)
  {
  this->name = name;
  this->age = age;
  }
};
class search_target_value {
public:
  bool operator()(person &p)   //在重载中指明是将年龄与20岁作比较,否则程序条件查询不能执行,程序错误
  {
  return p.age > 20;  
  }
};
void find_if_func(deque<person>&d)
{
  deque<person>::iterator p;  //迭代器
  while(d.size()!=0)
  {
  p = find_if(d.begin(), d.end(), search_target_value());  //条件查询
  if (p != d.end()) 
  {
    cout << "此人为:" << p->name << " " << p->age << endl;
  } 
  int count=0;   //计数
  int begin_sign = d.begin()->age;//将每一次循环的容器队头元素下的年龄赋值在begin_sign下,从而用来下面的判断
  p++;  
  while (p->age != begin_sign)  //当此时指针p下指向的age的值不为begin_sign的值时,执行while循环
  { 
    count++; 
    p--;   //每一次的循环使指针前移
  }
  for(int j=1;j<=count;j++)   //通过循环去执行count次出deque容器的操作
  { 
    d.pop_front();   //出
  }
  }
}
void text()
{
  //通过person构造函数去创建5个人
  person p1("张三", 19);
  person p2("李四", 30);
  person p3("王五", 40);
  person p4("赵六", 29);
  person p5("孙七", 12);
  //将这5个人插入deque容器中
  deque<person>d;
  d.push_back(p1);
  d.push_back(p2);
  d.push_back(p3);
  d.push_back(p4);
  d.push_back(p5);
  //自定义数据类型查找
  find_if_func(d);
}
int main()
{
  text();
}

3acbcc13b86602183ccc315cfbf7d94d_3ffadfa6af504ce7a20e996579f32cc7.png

●adjacent_find


1.功能描述:


       查找相邻重复元素


2.查看adjacent_find定义下底层代码的函数原型:


8e3d25cb5fd0f54a9a649dfbeb04b98e_ed19d1e6c7734d19983bd3e133edd8ef.png


3.向deque容器中插入6个元素,使用adjacent_find去查找这6个元素中是否有相邻的重复元素,并且输出其相邻重复元素值。


#include<iostream>
#include<deque>
#include<algorithm>
using namespace std;
void adjacent_find_func(deque<int>&d)
{
  deque<int>::iterator p;
  p = adjacent_find(d.begin(), d.end());   //查找相邻重复元素,并且会返回相邻元素的第一个位置的迭代器
  if (p != d.end())
  cout << "找到相邻重复元素:" << *p << endl;
  else
  cout << "未找到相邻重复元素" << endl;
} 
void text()
{
  deque<int>d;
  d.push_back(1);
  d.push_back(2);
  d.push_back(1);
  d.push_back(3);
  d.push_back(4);
  d.push_back(4);
  //查找相邻的重复元素 1 2 1 3 [4 4]
  adjacent_find_func(d);
}
int main()
{
  text();
}

8d7264dcbbef3f56c721caa5beeb60c0_d3e942ec25ff43d6986a7dc15f0773c5.png


●binary_ search


1.功能描述:      


       查找指定元素是否存在


2.查看binary_search定义下底层代码的函数原型:


e8e71432f06d31cf19382a3b19adc217_345dc2a670434571b17bf3790520214c.png


3.向deque容器中顺序插入10个元素,使用binary_search去查找指定元素是否在容器中


#include<iostream>
#include<deque>
#include<algorithm>
using namespace std;
void binary_search_func(deque<int>&d)
{
  cout << "请输入要查找的元素:";
  int n; cin >> n;
  //binary_search 查找返回的值为一个bool类型,而不是迭代器
  bool ret = binary_search(d.begin(), d.end(),n);
  if (ret == 1)
  cout << "找到该元素" << endl;
  else
  cout << "未找到该元素" << endl;
}
void text()
{
  deque<int>d;
  for (int i = 1; i <= 10; i++)
  {
  d.push_back(i);
  }
  //binary_search底层代码是二分查找法,它操作的容器中元素必须为有序序列,无序的可能返回错误值
  binary_search_func(d);
}
int main()
{
  text();
}

30dcd1f69b156c2239918194e8ee56df_b606f948ac9e4177859f1921d42da566.png

88e2360736d035a91b3ddb7e78158e89_9eb671b41a0448eca4b687492ea407c5.png


●count


1.功能描述:


       统计元素个数


2.查看count定义下底层代码的函数原型:


7e44c7046dd6bcc8368d8de9b5676167_bb3cea0f696a4ed48f4a8fc812555c3d.png


3.内置数据类型下deque容器中指定元素的判断与统计:


#include<iostream>
#include<deque>
#include<algorithm>
using namespace std;
void count_func(deque<int>&d)
{
  cout << "输入要统计的元素:";
  int n; cin >> n;
  int num = count(d.begin(), d.end(), n);
  if (num != 0)
  cout << "该元素存在并且统计个数为:" << num << endl;
  else
  cout << "该元素不存在无法统计" << endl;
}
void text()
{
  deque<int>d;
  d.push_back(1);
  d.push_back(2);
  d.push_back(2);
  d.push_back(3);
  d.push_back(4);
  count_func(d);
}
int main()
{
  text();
}

571796c66f436d03d7d692872ffaa09b_79535488e94c45e984cdbb57c1a341a5.png

56daf9de2dcc0a4949d83a3cdb26913f_80038d6f18c346b29dc2e3955a57f765.png


4. 自定义数据类型的统计,输入一个新人(姓名+年龄),判断此刻deque容器中与该新人年龄相同的人是否存在并且统计其相同年龄人员个数:

#include<iostream>
#include<deque>
#include<algorithm>
#include<string>
using namespace std;
class person {
public:
  string name;
  int age;
  person(string name,int age)
  {
  this->name = name;
  this->age = age;
  }
  //自定义数据类型的统计需要重新去进行重载operator==
  bool operator==(const person &p)
  {
  if (this->age == p.age)
    return 1;
  else
    return 0;
  }
};
void count_func(deque<person>&d)
{
  cout << "请输入一个新人的姓名和年龄:";
  string name; cin >> name;
  int age; cin >> age;
  person p(name, age);
  int num = count(d.begin(), d.end(), p);
  if (num != 0)
  cout << "与该新人年龄相同的人存在,并且有" << num << "个" << endl;
  else
  cout << "与该新人年龄相同的人不存在" << endl;
}
void text()
{
  person p1("张三", 19);
  person p2("李四", 30);
  person p3("王五", 40);
  person p4("赵六", 40);
  person p5("孙七", 12);
  deque<person>d;
  d.push_back(p1);
  d.push_back(p2);
  d.push_back(p3);
  d.push_back(p4);
  d.push_back(p5);
  count_func(d);
}
int main()
{
  text();
}

08a9a6829e6131bdae686cbe1025a25b_e62c1d50364a490cbe8d6ff53f878fa7.png

4818e41356fd3ceef12b9cc85d18c16b_cb7c269d3faf4272a2c3e00a372dc2b2.png


●count_if


1.功能描述:


       按照条件去统计元素个数


2.查看count_if定义下底层代码的函数原型:


dc448a4f75fa58d83a0855efa75995fc_799038f41c5d449db9ea708f71a4ec6d.png


3.内置数据类型去条件统计deque容器中大于5的元素是否存在并且输出其有多少个。


#include<iostream>
#include<deque>
#include<algorithm>
using namespace std;
class statistics {
public:
  bool operator()(int value)
  {
  return value > 5;
  }
};
void find_if_func(deque<int>&d)
{
  int num = count_if(d.begin(), d.end(), statistics());
  if (num != 0)
  cout << "大于5的元素存在,并且有" << num << "个" << endl;
  else
  cout << "大于5的元素不存在" << endl;
}
void text()
{
  deque<int>d;
  for (int i = 1; i <= 10; i++)
  {
  d.push_back(i);
  }
  //1 2 3 4 5 6 7 8 9 10
  //内置数据类型的条件统计
  find_if_func(d);
}
int main()
{
  text();
}

ef9a1be86260f0012b4cbfcd2212a05b_286397785f424abe886ce12908e00eb5.png

目录
相关文章
|
13天前
|
存储 编译器 C语言
【c++丨STL】vector的使用
本文介绍了C++ STL中的`vector`容器,包括其基本概念、主要接口及其使用方法。`vector`是一种动态数组,能够根据需要自动调整大小,提供了丰富的操作接口,如增删查改等。文章详细解释了`vector`的构造函数、赋值运算符、容量接口、迭代器接口、元素访问接口以及一些常用的增删操作函数。最后,还展示了如何使用`vector`创建字符串数组,体现了`vector`在实际编程中的灵活性和实用性。
37 4
|
15天前
|
C语言 C++ 容器
【c++丨STL】string模拟实现(附源码)
本文详细介绍了如何模拟实现C++ STL中的`string`类,包括其构造函数、拷贝构造、赋值重载、析构函数等基本功能,以及字符串的插入、删除、查找、比较等操作。文章还展示了如何实现输入输出流操作符,使自定义的`string`类能够方便地与`cin`和`cout`配合使用。通过这些实现,读者不仅能加深对`string`类的理解,还能提升对C++编程技巧的掌握。
37 5
|
15天前
|
存储 编译器 C语言
【c++丨STL】string类的使用
本文介绍了C++中`string`类的基本概念及其主要接口。`string`类在C++标准库中扮演着重要角色,它提供了比C语言中字符串处理函数更丰富、安全和便捷的功能。文章详细讲解了`string`类的构造函数、赋值运算符、容量管理接口、元素访问及遍历方法、字符串修改操作、字符串运算接口、常量成员和非成员函数等内容。通过实例演示了如何使用这些接口进行字符串的创建、修改、查找和比较等操作,帮助读者更好地理解和掌握`string`类的应用。
25 2
|
20天前
|
存储 算法 Linux
【c++】STL简介
本文介绍了C++标准模板库(STL)的基本概念、组成部分及学习方法,强调了STL在提高编程效率和代码复用性方面的重要性。文章详细解析了STL的六大组件:容器、算法、迭代器、仿函数、配接器和空间配置器,并提出了学习STL的三个层次,旨在帮助读者深入理解和掌握STL。
40 0
|
2月前
|
编译器 C语言 C++
配置C++的学习环境
【10月更文挑战第18天】如果想要学习C++语言,那就需要配置必要的环境和相关的软件,才可以帮助自己更好的掌握语法知识。 一、本地环境设置 如果您想要设置 C++ 语言环境,您需要确保电脑上有以下两款可用的软件,文本编辑器和 C++ 编译器。 二、文本编辑器 通过编辑器创建的文件通常称为源文件,源文件包含程序源代码。 C++ 程序的源文件通常使用扩展名 .cpp、.cp 或 .c。 在开始编程之前,请确保您有一个文本编辑器,且有足够的经验来编写一个计算机程序,然后把它保存在一个文件中,编译并执行它。 Visual Studio Code:虽然它是一个通用的文本编辑器,但它有很多插
|
2月前
|
存储 程序员 C++
C++常用基础知识—STL库(2)
C++常用基础知识—STL库(2)
74 5
|
2月前
|
存储 自然语言处理 程序员
C++常用基础知识—STL库(1)
C++常用基础知识—STL库(1)
67 1
|
2月前
|
算法 安全 Linux
【C++STL简介】——我与C++的不解之缘(八)
【C++STL简介】——我与C++的不解之缘(八)
|
2月前
|
Java 编译器 C++
c++学习,和友元函数
本文讨论了C++中的友元函数、继承规则、运算符重载以及内存管理的重要性,并提到了指针在C++中的强大功能和使用时需要注意的问题。
24 1
|
2月前
|
算法 数据处理 C++
c++ STL划分算法;partition()、partition_copy()、stable_partition()、partition_point()详解
这些算法是C++ STL中处理和组织数据的强大工具,能够高效地实现复杂的数据处理逻辑。理解它们的差异和应用场景,将有助于编写更加高效和清晰的C++代码。
29 0