蓝桥杯常用库函数(c++)

本文介绍了C++标准库中的几个重要算法,包括min_element和max_element用于找到范围内的最小值和最大值,nth_element进行部分排序,binary_search和其相关函数用于二分查找,sort进行排序,以及memset、swap、reverse等内存管理和数据操作函数。
摘要由CSDN通过智能技术生成

min_element和max_element

时间复杂度:O(n)
头文件:algorithm
min_element(st, ed):返回地址[st, ed)中最小的那个值的地址(迭代器)
max_element(st, ed):返回地址[st, ed)中最大的那个值的地址(迭代器)

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;

int main(){
	vector<int> a = {5, 6, 3, 2};
	//或者使用auto it = min_element(a.begin(), a.begin() + 2);
	vector<int>::iterator it = min_element(a.begin(), a.begin() + 2);
	cout<<*it;
	
	int b[] = {4, 7, 8, 9};
	int it1 = *max_element(b, b + 2);
	cout<<it1;
	return 0;
}

nth_element

时间复杂度:O(n)
头文件:algorithm
nth_element(st, k, ed):进行部分排序,返回值为void,将第k位置元素处于正确位置,前面的比它小,后面的比它大

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;

int main(){
	vector<int> a = {6, 2, 3, 7, 9};
	nth_element(a.begin(), a.begin() + 2, a.end());
	cout<<a[2];
	
	int b[] = {3, 2, 6, 1, 8};
	nth_element(b, b + 2, b + 5);
	cout<<b[2];
	return 0;
}

binary_search

时间复杂度:O(logn)
头文件:algorithm
binary_search(st, ed, target):返回值为bool,通过二分查找确定序列中是否存在目标元素

lower_bound、upper_bound

时间复杂度:O(logn)
头文件:algorithm
使用前提:数组必须非降序
如果要在非升序的数组中使用,可以通过修改比较函数实现
lower_bound(st, ed, x):返回[st, ed)中第一个大于等于x的元素地址
upper_bound(st, ed, x):返回[st, ed)中第一个大于x的元素地址
如果不存在则返回最后一个元素的下一个地址,end()或n
地址 - 首地址 = 下标

sort

时间复杂度:O(nlogn)
头文件:algorithm
sort(st, ed, 比较函数或lambda表达式):返回值是void,将数组排序,默认是从小到大

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;

bool cmp(const int &u, const int &v){
	return u > v;
}

int main(){
	vector<int> a = {1, 3, 5, 7, 9};
	//或sort(v.begin(), v.end(), [](const int &u, const int &v){ return u > v; }); 
	sort(a.begin(), a.end(), cmp); 
	for(auto it : a) cout<<it<<endl;
	return 0;
}

//或重载小于号
struct Node{
	int u;
	bool operator < (const Node &m) const{
		return u > m.u;
	}
}; 
int main(){
	Node a[] = {5, 7, 9, 3, 1};
	sort(a, a + 5); 
	for(auto it : a) cout<<it.u<<endl;
	return 0;
}

memset

头文件:cstring
memset(void* ptr, int value, size_t num):返回一个指向ptr的指针,将ptr指向的内存块的前num个字节设置为value的值,重置一个数组,例如memset(a, 0, sizeof(a));
ptr:指向设置值的内存块
value:设置的值,一个八位二进制数
num:要设置的字节数

int main(){
	int a[5];
	memset(a, 1, sizeof a);
	//设置成1就是:00000001000000010000000100000001
	//设置成0x3f就是:十六进制前四位是3,后面一位是f,00111111001111110011111100111111
	//设置成0、-1则不变
	for(int i = 0; i < 5; i++) cout<<bitset<32>(a[i])<<endl;
	return 0;
}

swap

swap(T &a, T &b):交换任意类型的变量

reverse

头文件:algorithm
reverse(st, ed):反转一个数组、向量、字符串

unique

时间复杂度:O(n)
头文件:algorithm
使用前提:进行排序
unique(st, ed):将[st, ed)范围内相邻重复元素去除,返回值是去重后重复元素的第一个位置
1 2 2 3 5 5 -> 1 2 3 5 2 5

islower、isupper

头文件:cctype
islower©:返回值bool,判断一个字符是否是小写或大写字母

tolower、toupper

tolower©:返回一个字符,如果c是大写字母就转化成小写字母

acsii码

大写字母转换为小写字母:c + 32 或 c - ‘A’ + ‘a’
小写字母转换为大写字母:c - 32 或 c - ‘a’ + ‘A’
字符转化成数字:‘6’ - ‘0’ = 6

next_permutation、prev_permutation

next_permutation(st, ed):生成当前序列的下一个排列,返回true,如果已经是最后一个排列,则更改为第一个排列,返回false
prev_permutation相反

  • 4
    点赞
  • 11
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值