STL常用遍历,查找,算法

news2025/1/10 10:33:11

目录

1.遍历算法

 1.1for_earch

1.2transform

2.常用查找算法

2.1find,返回值是迭代器

2.1.1查找内置数据类型 

 2.1.2查找自定义数据类型

2.2fin_if 按条件查找元素

2.2.1查找内置的数据类型

2.2.2查找内置数据类型

2.3查找相邻元素adjeacent_find

2.4查找指定元素是否存在binarary_search

2.5统计元素的个数count

 2.5.1统计内置数据类型

2.5.2统计自定义数据类型

2.6按条件统计元素个数

2.6.1统计内置数据类型 

2.6.2统计自定义的数据类型

3.常用排序算法

3.1sort


1.遍历算法

 1.1for_earch

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
//常用遍历算法 for_each

//利用普通函数实现
void print01(int val)
{
	cout << val << " ";
}

//仿函数(函数对象)本身是个类。不是一个函数
class print02
{
public:
	void operator()(int val)
	{
		cout << val << " ";
	}
};
void test01()
{
	vector<int>v;
	for (int i = 0; i < 10; i++)
	{
		v.push_back(i);
	}
	for_each(v.begin(), v.end(), print01);//第三个位置,普通函数是把函数名放过来
	cout << endl;
	for_each(v.begin(), v.end(), print02());//第三个位置需要传入函数对象
	//类名加小括号,创建出匿名对象
}
int main()
{
	test01();
	system("pause");
	return 0;
}
	

1.2transform

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
//常用遍历算法 transform

//仿函数(函数对象)本身是个类。不是一个函数
class Transform
{
public:
	//搬运过程中把每个元素取出来在返回回去,由于操作的是int型,所以返回int
	int operator()(int val)
	{
		return val+100;//+100在搬到容器中
	}
};
class Myprint
{
public:
	void operator()(int val)
	{
		cout << val << " ";
	}
};
void test01()
{
	vector<int>v;
	for (int i = 0; i < 10; i++)
	{
		v.push_back(i);
	}
	vector<int>vTarget;//目标容器

	vTarget.resize(v.size());//目标容器 需要提前开辟空间,不然报错

	transform(v.begin(), v.end(), vTarget.begin(), Transform());//最后一个位置函数对象
	for_each(vTarget.begin(), vTarget.end(), Myprint());//最后一个位置函数对象
	cout << endl;
}
int main()
{
	test01();
	system("pause");
	return 0;
}
	

2.常用查找算法

2.1find,返回值是迭代器

2.1.1查找内置数据类型 

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
#include<string>
//常用查找算法 
//find

//查找 内置数据类型
void test01()
{
	vector<int>v;
	for (int i = 0; i < 10; i++)
	{
		v.push_back(i);
	}

	//查找 容器中 是否有 5 这个元素
	vector<int>::iterator it = find(v.begin(), v.end(), 50);
	if (it == v.end())
	{
		cout << "没有找到!" << endl;
	}
	else
	{
		cout << "找到:" << *it << endl;
	}
}

int main()
{
	test01();
	system("pause");
	return 0;
}
	

 2.1.2查找自定义数据类型

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
#include<string>
//常用查找算法 
//find

class Person
{
public:
	Person(string name, int age)
	{
		m_Name = name;
		this->m_Age = age;
	}
	//重载== 让底层find知道如何对比person数据类型
	bool operator ==(const Person& p)//const防止修改p
	{
		if (this->m_Name == p.m_Name && this->m_Age == p.m_Age)
		{
			return true;
		}
		else
		{
			return false;
		}
	}
	string m_Name;
	int m_Age;
};
//查找 自定义数据类型
void test02()
{
	vector<Person>v;
	//创建数据
	Person p1("aaa", 10);
	Person p2("bbb", 20);
	Person p3("ccc", 30);
	Person p4("ddd", 40);
	//放到容器中
	v.push_back(p1);
	v.push_back(p2);
	v.push_back(p3);
	v.push_back(p4);

	Person p("bbb", 20);
	//查找是否有和p一样的
	vector<Person>::iterator it = find(v.begin(), v.end(), p);
	if (it == v.end())
	{
		cout << "没有找到" << endl;
	}
	else
	{
		cout << "找到元素:姓名:" << (*it).m_Name << " 年龄:" << it->m_Age << endl;
	}

}
int main()
{
	test02();
	system("pause");
	return 0;
}
	

2.2fin_if 按条件查找元素

2.2.1查找内置的数据类型

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
#include<string>
//常用查找算法 
//find_if

//1.查找内置数据类型
class GreaterFive
{
public://谓词返回bool
	bool operator()(int val)//find_if的底层也是取出每个元素并解引用,放到重载小括号里去操纵
	{
		return val > 5;//大于5 的时候就返回真
	}
};
void test01()
{
	vector<int>v;
	for (int i = 0; i < 10; i++)
	{
		v.push_back(i);
	}
	//返回一个迭代器
	vector<int>::iterator it=find_if(v.begin(), v.end(), GreaterFive());//第三个位置是匿名函数对象
	if (it == v.end())
	{
		cout << "没有找到大于5的元素" << endl;
	}
	else
	{
		cout << "找到大于5的数字为:" << *it << endl;
	}
}

//2.查找自定义数据类型

int main()
{
	test01();


	system("pause");
	return 0;
}
	

2.2.2查找内置数据类型

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
#include<string>
//常用查找算法 
//find_if

//2.查找自定义数据类型
class Person
{
public:
	Person(string name, int age)
	{
		m_Name = name;
		this->m_Age = age;
	}
	string m_Name;
	int m_Age;
};
class Great20
{
public:
	bool operator()(Person &p)//每个数据类型都是Perosn的数据类型用引用的方式传进来
	{
		return p.m_Age > 20;
	}
};
bool G2(Person& p)
{
	return p.m_Age > 20;
}
void test02()
{
	vector<Person>v;
	//创建数据
	Person p1("aaa", 10);
	Person p2("bbb", 20);
	Person p3("ccc", 30);
	Person p4("ddd", 40);

	v.push_back(p1);
	v.push_back(p2);
	v.push_back(p3);
	v.push_back(p4);
	//找年龄大于20的人
	vector<Person>::iterator it = find_if(v.begin(), v.end(), Great20());
	if (it == v.end())
	{
		cout << "没有找到" << endl;
	}
	else
	{
		cout << "找到姓名:" << (*it).m_Name << "年龄:" << it->m_Age << endl;
	}
	vector<Person>::iterator it1 = find_if(v.begin(), v.end(), Great20());
	if (it1 == v.end())
	{
		cout << "没有找到" << endl;
	}
	else
	{
		cout << "找到姓名:" << (*it1).m_Name << "年龄:" << it1->m_Age << endl;
	}
}
int main()
{
	test02();


	system("pause");
	return 0;
}
	

2.3查找相邻元素adjeacent_find

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
//常用查找算法 
//adjacent_find
void test01()
{
	vector<int>v;
	v.push_back(0);
	v.push_back(2);
	v.push_back(0);
	v.push_back(3);
	v.push_back(1);
	v.push_back(4);
	v.push_back(3);
	v.push_back(3);
	vector<int>::iterator it=adjacent_find(v.begin(), v.end());
	if (it == v.end())
	{
		cout << "未找到相邻重复元素" << endl;
	}
	else
	{
		cout << "找到相邻重复元素:" << *it << endl;
	}
}


int main()
{
	test01();


	system("pause");
	return 0;
}
	

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
//常用查找算法 
//binary_search 二分查找法,在无序的序列中不可以用
void test01()
{
	vector<int>v;
	for (int i = 0; i < 10; i++)
	{
		v.push_back(i);
	}
	//查找容器中是否有9
	//注意容器必须是有序的序列
    //如果无序结果未知
	bool ret = binary_search(v.begin(), v.end(), 9);
	if (ret)
	{
		cout << "找到了元素" << endl;
	}
	else
	{
		cout << "没找到" << endl;
	}
}

int main()
{
	test01();


	system("pause");
	return 0;
}
	

2.5统计元素的个数count

 2.5.1统计内置数据类型

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
//常用查找算法 
//count

//1.统计内置数据类型
void test01()
{
	vector<int>v;
	v.push_back(10);
	v.push_back(40);
	v.push_back(30);
	v.push_back(40);
	v.push_back(20);
	v.push_back(40);
	int num=count(v.begin(), v.end(), 40);
	cout << "40的元素个数为:" <<num<< endl;
	int num1 = count(v.begin(), v.end(), 1);
	cout << "1的元素个数为:" << num1 << endl;//输出0
}

int main()
{
	test01();


	system("pause");
	return 0;
}
	

2.5.2统计自定义数据类型

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
//常用查找算法 
//count

//2.统计自定义数据类型
class Person
{
public:
	Person(string name, int age)
	{
		m_Name = name;
		this->m_Age = age;
	}
	bool operator==(const Person& p)//底层要加const,
	{
		if (m_Age==p.m_Age)
		{
			return true;
		}
		else
		{
			return false;
		}
	}
	string m_Name;
	int m_Age;
};
void test02()
{
	vector<Person>v;
	Person p1("刘备", 35);
	Person p2("关羽", 35);
	Person p3("张飞", 35);
	Person p4("赵云", 30);
	Person p5("曹操", 40);

	//将人员插入到容器中

	v.push_back(p1);
	v.push_back(p2);
	v.push_back(p3);
	v.push_back(p4);
	v.push_back(p5);

	Person p("诸葛亮", 35);
    
	//统计与诸葛亮年龄相同的有几人
	int num = count(v.begin(), v.end(), p);
	cout << "和诸葛亮同岁数的人员个数为:" << num << endl;
}

int main()
{
	test02();


	system("pause");
	return 0;
}
	

2.6按条件统计元素个数

2.6.1统计内置数据类型 

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
//常用查找算法 
//count_if

//1.统计内置数据类型
class Greater20
{
public:
	bool operator()(int val)
	{
		return val > 20;
	}
};
void test01()
{
	vector<int>v;
	v.push_back(10);
	v.push_back(40);
	v.push_back(30);
	v.push_back(20);
	v.push_back(40);
	v.push_back(20);

	int num = count_if(v.begin(), v.end(), Greater20());
	cout << "大于20的元素个数为:" << num << endl;
}

int main()
{
	test01();


	system("pause");
	return 0;
}
	

2.6.2统计自定义的数据类型

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
//常用查找算法 
//count_if

//2.统计自定义的数据类型
class Person
{
public:
	Person(string name, int age)
	{
		m_Name = name;
		this->m_Age = age;
	}
	string m_Name;
	int m_Age;
};

class AgeGreater20
{
public:
	bool operator()(Person &p)
	{
		return p.m_Age > 20;
	}
};

void test02()
{
	vector<Person>v;
	
	Person p1("刘备", 35);
	Person p2("关羽", 35);
	Person p3("张飞", 35);
	Person p4("赵云", 40);
	Person p5("曹操", 20);

	v.push_back(p1);
	v.push_back(p2);
	v.push_back(p3);
	v.push_back(p4);
	v.push_back(p5);

	//统计 大于20岁人员个数

	int num = count_if(v.begin(), v.end(), AgeGreater20());
	cout << "大于20的元素个数为:" << num << endl;
}

int main()
{
	test02();


	system("pause");
	return 0;
}
	

3.常用排序算法

3.1sort

#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
//常用排序算法 
//sort
void myPrint(int val)
{
	cout << val << " ";
}
void test01()
{
	vector<int>v;
	v.push_back(10);
	v.push_back(30);
	v.push_back(50);
	v.push_back(20);
	v.push_back(40);

	//利用sort进行升序,默认情况下升序
	sort(v.begin(), v.end());
	for_each(v.begin(), v.end(), myPrint);
	cout << endl;

	//改变为降序
	sort(v.begin(), v.end(), greater<int>());//greater<int>()内建函数对象,需要包含functional头文件,编译器高的不包含functional头文件也不会出错
	for (int i = 0; i < v.size(); i++)
	{
		cout << v[i] << " ";
	}
	cout << endl;
}


int main()
{
	test01();


	system("pause");
	return 0;
}
	
bool compare(int a,int b) 
{ 
    return a < b; //升序排列,如果改为return a>b,则为降序 
} 
int a[20]={2,4,1,23,5,76,0,43,24,65},i; 
for(i=0;i<20;i++) 
    cout<< a[i]<< endl; 
sort(a,a+20,compare);
#include<iostream>
using namespace std;
#include<stack>
#include<algorithm>
#include<bitset>
#include<cmath>
#include<queue>
#include<set>
#include<map>

struct Point 
{
	int x;
	int y;
	//Point(int xx, int yy) :x(xx), y(yy) {};
	bool operator < (Point& p) {
		if (x != p.x) {
			return x < p.x;
		} else {
			return y < p.y;
		}
	}
};


int main()
{
	
	vector<Point> p;
	p.push_back(Point{ 1,2 });
	p.push_back(Point{ 1,3 });
	Point p1;
	p1.x = 2;
	p1.y = 1;
	p.push_back(p1);
	sort(p.begin(), p.end());
	for (int i = 0; i < p.size(); i++) {
		cout << p[i].x << " " << p[i].y << endl;
	}
	/*
	 输出:
	    1 2
		1 3
		2 1
	*/
	system("pause");
	return 0;
}

--------------------------------------------------------------------------------------

struct Point 
{
	int x;
	int y;
};
bool Cmp(Point& p1, Point& p2) {
	if (p1.x != p2.x) {
		return p1.x < p2.x;
	} else {
		return p1.y < p2.y;
	}
}

int main()
{
	
	vector<Point> p;
	p.push_back(Point{ 1,2 });
	p.push_back(Point{ 1,3 });
	Point p1;
	p1.x = 2;
	p1.y = 1;
	p.push_back(p1);
	sort(p.begin(), p.end(),Cmp);
	for (int i = 0; i < p.size(); i++) {
		cout << p[i].x << " " << p[i].y << endl;
	}
	/*
	 输出:
	    1 2
		1 3
		2 1
	*/
	system("pause");
	return 0;
}
----------------------------------------------------------------------------------------

struct Point
{
	int x;
	int y;
};
class cmp
{
public:
	bool operator()(Point& p1, Point& p2)const {
		if (p1.x != p2.x) {
			return p1.x < p2.x;
		} else {
			return p1.y < p2.y;
		}
	}
};


int main()
{

	vector<Point> p;
	p.push_back(Point{ 1,2 });
	p.push_back(Point{ 1,3 });
	Point p1;
	p1.x = 2;
	p1.y = 1;
	p.push_back(p1);
	sort(p.begin(), p.end(), cmp());
	for (int i = 0; i < p.size(); i++) {
		cout << p[i].x << " " << p[i].y << endl;
	}
	/*
	 输出:
		1 2
		1 3
		2 1
	*/
	system("pause");
	return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1037754.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

简易介绍如何使用拼多多商品详情 API。

拼多多&#xff08;Pinduoduo&#xff09;是中国一家快速发展的电商平台&#xff0c;为了帮助开发者更好地接入拼多多&#xff0c;平台提供了丰富的 API 接口供开发者使用&#xff0c;其中包括获取拼多多商品详情的 API。接下来&#xff0c;我们将介绍如何使用拼多多商品详情 A…

重学 HashMap

文章目录 1.从 Map 接口入手1.1 从 JDK 1.0 的 Dictionary\<K,V\> 抽象类讲起1.2 Map 接口中的集合视图又是怎样的&#xff1f;1.3 为什么 JDK 官方不推荐使用可变对象作为 Map 的键&#xff1f;1.4 为什么映射不应该将自己作为键&#xff0c;而可以作为值&#xff1f;1.…

python基于轻量级卷积神经网络模型开发构建眼疾识别系统

常见的眼疾包括但不限于以下几种&#xff1a; 白内障&#xff1a;白内障是眼睛晶状体变得模糊或不透明&#xff0c;导致视力下降。它通常与年龄相关&#xff0c;但也可以由其他因素引起&#xff0c;如遗传、外伤、糖尿病等。 青光眼&#xff1a;青光眼是一组引起视神经损伤的眼…

HTTP 协议的定义,工作原理,Fiddler的原理和使用,请求的内容

文章目录 一. HTTP协议是什么?1.HTTP工作原理2.HTTP协议格式2.1抓包工具的原理2.2抓包工具的使用2.3 HTTP协议的内容请求首行请求头(header)空行正文(body) 一. HTTP协议是什么? HTTP (全称为 “超文本传输协议”) 是一种应用非常广泛的 应用层协议. "超文本"是指…

异步电机直接转矩控制学习

导读&#xff1a;本期文章对异步电机直接转矩控制进行梳理。DTC包括转速外环、磁链观测器、滞环和电压矢量离线开关表。离线电压矢量开关表共分为两种&#xff1a;添加零矢量和未添加零矢量。 如果需要文章种的仿真模型&#xff0c;关注微信公众号&#xff1a;浅谈电机控制&am…

同城配送商城小程序的作用是什么

本地生活服务如餐饮、服装、鲜花、百货等产品都具备同城经营属性&#xff0c;在产品销售方面普遍是以实体店为主做三公里生意&#xff0c;而随着互联网线上深入&#xff0c;很多商家会通过进驻外卖平台获得生意&#xff0c;当然也有越来越多的商家选择自建商城完成品牌的配送平…

机器学习第十四课--神经网络

总结起来&#xff0c;对于深度学习的发展跟以下几点是离不开的: 大量的数据(大数据)计算资源(如GPU)训练方法(如预训练) 很多时候&#xff0c;我们也可以认为真正让深度学习爆发起来的是数据和算力&#xff0c;这并不是没道理的。 由于神经网络是深度学习的基础&#xff0c;学…

AIGC(生成式AI)试用 6 -- 桌面小程序

生成式AI&#xff0c;别人用来写作&#xff0c;我先用来写个桌面小程序。 桌面小程序&#xff1a;计算器 需求 Python开发图形界面&#xff0c;标题&#xff1a;计算器 - * / 基本运算计算范围&#xff1a;-999999999 ~ 999999999** 乘方计算&#xff08;例&#xff0c;2*…

c==ubuntu+vscode debug redis7源码

新建.vscode文件夹&#xff0c;创建launch.json和tasks.json {"version": "0.2.0","configurations": [{"name": "C/C Launch","type": "cppdbg","request": "launch","prog…

人工智能轨道交通行业周刊-第61期(2023.9.18-9.24)

本期关键词&#xff1a;焊线机器人、智能综合运维管理系统、信号平面图、铁路部门架构、书生浦语大模型 1 整理涉及公众号名单 1.1 行业类 RT轨道交通人民铁道世界轨道交通资讯网铁路信号技术交流北京铁路轨道交通网上榜铁路视点ITS World轨道交通联盟VSTR铁路与城市轨道交通…

确知波束形成matlab仿真

阵列信号处理中的导向矢量 假设一均匀线性阵列&#xff0c;有N个阵元组成&#xff0c;满足&#xff1a;远场、窄带假设。 图1. 均匀线性阵模型 假设信源发射信号&#xff0c;来波方向为 θ \theta θ&#xff0c;第一个阵元接收到的信号为 x ( t ) x(t) x(t)&#xff0c;则第…

mybatsi-MyBatis的逆向工程

mybatsi-MyBatis的逆向工程 一、前言二、创建逆向工程的步骤1.添加依赖和插件2.创建MyBatis的核心配置文件3.创建逆向工程的配置文件4.执行MBG插件的generate目标 一、前言 正向工程&#xff1a;先创建Java实体类&#xff0c;由框架负责根据实体类生成数据库表。 Hibernate是支…

Nitrux 3.0 正式发布并全面上市

导读乌里-埃雷拉&#xff08;Uri Herrera&#xff09;近日宣布 Nitrux 3.0 正式发布并全面上市&#xff0c;它是基于 Debian、无 systemd、不可变的 GNU/Linux 发行版的最新安装媒体&#xff0c;利用了 KDE 软件。 Nitrux 3.0 由带有 Liquorix 味道的 Linux 6.4.12 内核提供支持…

每日一题~把二叉搜索树转换为累加

原题链接&#xff1a;538. 把二叉搜索树转换为累加树 - 力扣&#xff08;LeetCode&#xff09; 题目描述&#xff1a; 思路分析&#xff1a; 通过描绘二叉搜索树转换累加树的过程&#xff0c;我们发现转换的过程是从右往左依次相加的&#xff0c;新节点的值 右边节点的值的和 …

HTML怎么使用角度代码调节一个角的角度

文章目录 概要整体架构流程 概要 我们在用代码做图形的时候&#xff0c;用的矩形和圆形比较多&#xff0c;如果遇到只改变其中一个角的角度&#xff0c;这时又该怎么做呢 整体架构流程 如图&#xff0c;这是建立的一个正圆的代码&#xff0c;其调节角度的属性代码是border-ra…

Leetcode | 560. 和为 K 的子数组

560. 和为 K 的子数组 文章目录 [560. 和为 K 的子数组](https://leetcode.cn/problems/subarray-sum-equals-k/)题目解法1&#xff1a;暴力枚举解法2&#xff1a;前缀和解法3&#xff1a;[官方题解](https://leetcode.cn/problems/subarray-sum-equals-k/solutions/238572/he-…

成都直播基地火热招商中,天府蜂巢成都直播基地招商政策汇总

随着直播产业的发展,四川天府新区也在逐步形成成熟的直播产业链。近日,记者采访到成都天府蜂巢直播产业基地即将竣工,正式进入运营阶段&#xff0c;作为成都科学城兴隆湖高新技术服务产业园的主打新一代成都直播基地&#xff0c;正积极招商中&#xff01;引领大规模的平台聚合发…

关于POM声明为provided的依赖,运行程序时报错NoClassDefFoundError

问题叙述 我在编写flink程序时&#xff0c;将flink相关依赖声明为provided&#xff08;目的是项目打包时不会将flink依赖打入包最终jar包中&#xff0c;减少内存占用&#xff09; 但是如果在IDEA本地中执行程序会报错java.lang.NoClassDefFoundError&#xff0c;如下所示 解…

静态资源的动态引入

有常用的2种方式&#xff1a; 1、css中的静态路径 2、img中的src静态路径 运行的环境是打包后的图片路径&#xff0c;而打包后的图片通常会生成一个文件指纹&#xff0c;而我们在写代码时&#xff0c;写的是源码中的路径和文件名&#xff0c;如果是静态路径&#xff0c;则会自动…

leetcodetop100(18) 螺旋矩阵

给你一个 m 行 n 列的矩阵 matrix &#xff0c;请按照 顺时针螺旋顺序 &#xff0c;返回矩阵中的所有元素。 示例 1&#xff1a; 输入&#xff1a;matrix [[1,2,3],[4,5,6],[7,8,9]] 输出&#xff1a;[1,2,3,6,9,8,7,4,5]示例 2&#xff1a; 输入&#xff1a;matrix [[1,2,3…