首页 > 编程语言 >C++常见函数的基础算法

C++常见函数的基础算法

时间:2024-11-12 22:20:25浏览次数:1  
标签:std main 函数 int C++ 算法 using include string

string 字符串

常用函数

  • substring()
  • string.length()&&string.size()
  • string.find()
  • string.replace()
  • string.substr()

string初始化和声明

#include<bits/stdc++.h>
using namespace std;
	int main(){
        string str1; //空字符串
        string str2="hello, world";  //注意中间有空格和‘,’逗号
        //通过str2赋值给str3
        string str3=str2; 
        //初始化重复的字母
        stirng str4(5,'C'); // str4="CCCCC"
        return 0;       
    }

获取字符串的长度

string.length()&&string.size()

#include<bits/stdc++.h>
using namespace std;
	int main(){
       string str1="hello,, world";
        int len=str1.length();
        int len1=str1.size();
        cout<<len<<len1; //输出13 包括2个逗号和一个空格
        return 0;       
    }

length()size()返回的是无符号整数(0,1,2...) 使用时尽量用 (int)str1.length()进行强转

字符串查找

string.find()

#include<bits/stdc++.h>
using namespace std;
	int main(){
       string str1="hello,, world";
       int x=str1.find(" world"); //用int 替代 size_t (无符合整数)
	   cout<<x; //输出7 空格的下标是7
       int y=str1.find(" 2world");
       cout<<y;//输出的-1;
             
    }

找到相应的子串会返回子串中第一个char在字符串中的下标,如果没有找到会返回 -1

字符串拼接

+ || append()

#include<bits/stdc++.h>
using namespace std;
	int main(){
       string str1="hello";
       string str2="world"
       string str3(5,'Z');
       // 用+进行拼接
       string re1=str1+str2+str3;
       cout<<re1; //输出helloworldZZZZZ
       //用append()
       string re2=str1.append(str2).append(str3).append("!");
       cout<<re2; //输出helloworldZZZZZ!
    }

**+ 拼接时可用char拼接,但在append()中的参数只能是string类型,不能是char **

string re1=str1+str2+str3+'!'+"2313";
cout<<re1;//输出helloworldZZZZZ!2313
string re2=str1.append(str2).append(str3).append('!');//append('!')会报错

字符串替换

string.replace()

#include<bits/stdc++.h>
using namespace std;
	int main(){
       string str1="hello,, world";
       str1.replace(7,3,"333444");//7代表从下标为7的元素开始‘ ’,3代表要替换的长度(” wo“)
       cout<<str1;//输出 hello,,333444rld
    }

提取子字符串

substr()

#include<bits/stdc++.h>
using namespace std;
	int main(){
       string str1="hello,, world";
       string re1=str1.substr(2,4); //2表示从下标2开始,4表示提取子字符串的长度;
       cout<<re1;//输出 llo,
    }

字符串比较

compare()

#include<bits/stdc++.h>
using namespace std;
	int main(){
       string str1="hello,,world";
       string str2="heooll";
       int in=str1.compare(str2); // 比较到下标为2时,'l'<'o' 所以返回-1
       cout<<in;//输出-1 str1比str2小
       
       // 用<,>,== 来比较字符串大小
       int re1=str1<str2;
       int re2=str1==str2;
       int re3=str1>str2;
       cout<<re1<<re2<<re3;//输出 1 0 0
        
    }

字符串的比较不是越长就越大,比较时会从第一个元素进行一一对应的比较,如果有不相同的元素就会马上得出结果;

re=str1.compare(str2)

  • re==0 字符串相等
  • re<0 str1较小
  • re>0 str2较大

用 <,>,== 比较 re=str1<str2

  • re=1 str1小于str2
  • re=0 str1不小于str2

二分查找(库函数)

库函数只能对数组进行二分查找,而且必须为单调的

  • binary_search()
  • lower_bound()(常用)
  • upper_bound()

用于对已排序的序列(数组或容器)中查找特定的元素

#include<bits/stdc++.h>
using namespace std;

int main(){
	vector<int>nums={1,3,5,7,9};
	int target=5;
	//用binary_search()函数进行查找
	bool found=binary_search(nums.begin(),nums.end(),target); 
	
	if (found){
		cout<< "already found";
	}else{
		cout<<"not found!";
	}
		cout<<found;//输出1;
	return 0;
} 

该函数会返回一个bool类型的值

lower_bound()upper_bound()

使用前提:数组必须为非降序,即采用单调不减进行排序

lower_bound(st,ed,x)会返回地址[st,ed)中第一个大于等于x的元素的地址

upper_bound(st,ed,x)会返回地址[st,ed)中第一个大于x的元素的地址

如果不存在则返回最后一个元素的下一个位置,在vector中为end()的地址

#include<bits/stdc++.h>
using ll=long long;
using namespace std;

const ll N=5050;

int main() {
    vector<ll> r;
    ll n, m;
    cin >> n >> m;

    for (int i = 0; i < n; i++) {
        ll a;
        cin >> a;
        r.push_back(a);
    }

    vector<ll> x;
    for (int j = 0; j < m; j++) {
        ll b;
        cin >> b;
        x.push_back(b);
    }



    sort(r.begin(),r.end());//先对vector里面的元素进行排序
    for(int i=0;i<m;i++) { 
        auto low = lower_bound(r.begin(), r.end(), x[i]);//用lower_bound返回要查找的元素位置的地址
        if (low == r.end() || *(low) != x[i]) { 
            //如果low==r.end()说明未找到返回的是end()的地址或者未找到目标则会返回第一个大于x[i]的地址

            cout << -1<<" " ;
            continue;
        } 
        cout << (low - r.begin())+1 <<" ";//用low的地址-r.begin()的地址=low的下标位置
    }


    return 0; 
}

如果 x[i] 不存在于 r 中,lower_bound 将返回指向第一个大于 x[i] 的元素的迭代器(如果存在的话);如果所有元素都小于 x[i],则返回 r.end()

大写转小写(库函数)

  • islower()
  • isupper()
  • tolower()
  • toupper()

Ascii码

十进制 字符 十进制 字符 十进制 字符 十进制 字符
48 0 65-97 A-a 75-107 K-k 85-117 U-u
49 1 66-98 B-b 76-108 L-l 86-118 V-v
50 2 67-99 C-c 77-109 M-m 87-119 W-w
51 3 68-100 D-d 78-110 N-n 88-120 X-x
52 4 69-101 E-e 79-111 O-o 89-121 Y-y
53 5 70-102 F-f 80-112 P-p 90-122 Z-z
54 6 71-103 G-g 81-113 Q-q
55 7 72-104 H-h 82-114 R-r
56 8 73-105 I-i 83-115 S-s
57 9 74-106 J-j 84-116 T-t

利用Ascii码进行大小写互转

#include<bits/stdc++.h>
using namespace std;

int main(){
	string s ;
	cin>>s;
	for(auto &i:s){
		if (i>='A'&&i<='Z')i=i-'A'+'a';//大写转小写
		else if (i>='a'&&i<='z')i=i-'a'+'A';//小写转大写
		
	}
    //或者
    /*for(auto &i:s){
		if (i>=65&&i<=90)i=i-'A'+'a';//大写转小写
		else if (i>=97&&i<=122)i=i-'a'+'A';//小写转大写
		
	} */  
	cout<<s;
	return 0;
} 

tolower()toupper()大小写互转

#include<bits/stdc++.h>

using namespace std;

char change(char x){
	if(islower(x))x=toupper(x);//判断是小写 则转为大写
	else if(isupper(x))x=tolower(x);//判断是大写 则转为小写
	return x;
	
}
int main(){
	string s ;
	cin>>s;
	for(auto &i:s)i=change(i);
	cout<<s;
	return 0;
} 

islower(x)会返回bool类型

toupper(x)会将小写转换为大写,如果不是小写字母则不会执行任何操作

islower(),isupper(x)判断是否为小写或大写

#include<bits/stdc++.h>
using namespace std;

int main(){
	char s ;
	cin>>s;
	if(islower(s))cout<<"是小写";
	else if(isupper(s))cout<<"是大写";
	cout<<s;
	return 0;
} 

排序(库函数)

sort()

sort()采用的是类似快排的算法,时间复杂度是O(nlogn),返回void

#include<bits/stdc++.h>
using namespace std;
//const N=1e5+5;
//int arr[N];

int main(){
	int arr[]={7,4,8,1,9,3,5};
	int size=sizeof(arr)/sizeof(int);
	sort(arr,arr+size);
	for(auto i:arr)cout<<i;
	//或者用vector容器中的迭代器
	vector<int>p={7,4,8,1,9,3,5};
	sort(p.begin(),p.end()) ;
	for(auto i:p)cout<<i;
	
	return 0;
}

ps:sort()可以用第三个参数进行自定义比较,可传入一个函数,会一一的执行传入的函数

最值查找

  • min(),max()
  • min_element(),max_element()
  • nth_element()

min(),max()

max(x,y)和min()只能传入2个参数或者一个列表,返回void

#include<bits/stdc++.h>
using namespace std;

int main(){
	//传入2个参数
    cout<<max(4,5);//==5
    //传入列表
	cout<<min({1,23,4,5,});//==1
	
	return 0;
	
} 

max_element(),min_element()

max_element(st,ed),min_element(st,ed) 函数会返回最大或最小那个元素的地址(迭代器)

#include<bits/stdc++.h>
using namespace std;

int main(){
	int a[]={1,23,4,5,6};
	cout<<a[max_element(a,a+5)-a];//23
	cout<<a[min_element(a,a+5)-a];//1
    
	//也可用vector
    vector<int>p={1,23,4,5,6};
	cout<<p[max_element(p.begin(),p.end())-p.begin()];//23

	return 0;
	
} 

nth_element()

进行部分排序,返回void

#include<bits/stdc++.h>
using namespace std;

int main(){
	vector<int>p={1,4,2,6,7,8};
	nth_element(p.begin(),p.begin()+2,p.end());//对[p.begin(),p.begin()+2]范围内排序
	for(auto i:p)cout<<i<<" ";//输出2 1 4 6 7 8
	return 0;
	
} 

全排列(库函数)

next_permutation()

prev_permutation()

next_permutation()

next_permutation(st,ed)用于生成当前序列的下一个序列,如果存在下一个序列则会将当前序列更改为下一个序列,并且返回true,如果不存在则会将当前的序列更改为第一个序列,并且返回false,一般第一序列是最小序列

#include<bits/stdc++.h>
using namespace std;

int main(){
	vector<int>p={1,4,2,3};
	sort(p.begin(),p.end());//一般先进行排序,使其为最小序列 1234
	next_permutation(p.begin(),p.end());//排一次
	for(auto i:p)cout<<i<<" ";//输出1243
	return 0;
	
    
    
} 

输出全排列

#include<bits/stdc++.h>
using namespace std;

int main(){
	vector<int>p={1,3,2};
	sort(p.begin(),p.end());//排序 1 2 3 

	for(auto i:p)cout<<i<<" ";
	cout<<endl;
	while(next_permutation(p.begin(),p.end())){
		
		for(auto i:p)cout<<i<<" ";
		cout<<endl;
		
	}
    /*输出
    1 2 3
    1 3 2
    2 1 3
    2 3 1
    3 1 2
    3 2 1*/
   for(auto i:p)cout<<i<<" ";//最后序列会回到一个序列,输出123

	return 0;
} 

prev_permutation()

prev_permutation(st,ed)用于生成当前序列的上一个序列,如果存在上一个序列则会将当前序列更改为上一个序列,并且返回true,如果不存在则会将当前的序列更改为第最后个序列,并且返回false****,一般第一序列是最大序列

#include<bits/stdc++.h>
using namespace std;

int main(){
	vector<int>p={1,3,2};
	sort(p.begin(),p.end());//排序 123
	reverse(p.begin(),p.end());//逆转为321 使第一个序列为最大序列
	for(auto i:p)cout<<i<<" ";
	cout<<endl;
	while(prev_permutation(p.begin(),p.end())){
		
		for(auto i:p)cout<<i<<" ";
		cout<<endl;
		
	}
	for(auto i:p)cout<<i<<" ";//最后的序列会变回为第一个序列 即最大的序列
    /*
    3 2 1
    3 1 2
    2 3 1
    2 1 3
    1 3 2
    1 2 3
    3 2 1*/
	return 0;
} 

其他库函数

  • memset()
  • swap()
  • reverse()
  • unique()

memset()

一般用于初始化数组中的元素值

#include<bits/stdc++.h>
using namespace std;

int main(){
	int a[10];
	//将数组a初始化为0;
	memset(a,0,sizeof a);
	for(auto i:a)cout<<i;
	return 0;
} 

swap()

用于交换2个变量的值,返回void

#include<bits/stdc++.h>
using namespace std;

int main(){
	int a=2,b=4;
	swap(a,b);//交换a,b  a=4,b=2;
	cout<<a<<b;
	return 0;
} 

reverse()

reverse(st,ed)用于数组或vector容器中的元素逆转

#include<bits/stdc++.h>
using namespace std;

int main(){
	vector<int>p={1,2,3,4};
	reverse(p.begin(),p.end());//对p中的元素进行逆转
	for(auto i:p)cout<<i;
	//输出4321
	return 0;
} 

unique()

unique(st,ed)函数用于对[st,ed)中相邻元素去重,!!!并且会把重复的元素放回去重元素的后面,然后返回重复元素中第一个元素的地址,由于只会对相邻元素进行去重,所以要想达到完全去重,使用前需要先排序,可以结合erase()达到完整去重效果

#include<bits/stdc++.h>
using namespace std;

int main(){
	vector<int>p={1,2,3,3,4,4,2,1};
	sort(p.begin(),p.end());
	auto gap=unique(p.begin() ,p.end());
	//用erase
	p.erase(gap,p.end());
	for(auto i:p)cout<<i;//1234
	//用for循环
	for(int i=0;i<gap-p.begin();i++) cout<<p[i];//1234
	
	

	return 0;
} 

标签:std,main,函数,int,C++,算法,using,include,string
From: https://www.cnblogs.com/zpa666/p/18542777

相关文章

  • 一文速通C++全特化/偏特化、重载决议
    全特化/偏特化重载决议在开始搞模板元编程、SFINAE、类型萃取、concept前,我们来回顾一下特化和重载决议。这堆编译期鬼画符一样的东西,运行期到底会调用哪一个呢?哪怕不会写,你起码需要看得明白不是?全特化/偏特化全特化(specialization):具体指明模板类型里全部的类型参数......
  • 痞子衡嵌入式:关于恩智浦SDK2.0里事务型中断处理函数(DriverIRQHandler)的重定向注意事
    大家好,我是痞子衡,是正经搞技术的痞子。今天痞子衡给大家介绍的是SDK2.0里事务型中断处理函数(DriverIRQHandler)的重定向注意事项。最近有一个i.MXRT客户在使用官方SDK外设驱动里的中断处理函数时遇到了代码重定向失效问题,客户用得是一个XIPFlash工程,想把程序中......
  • C语言——函数基本知识(三)
            上篇文章我们介绍了函数递归的使用,接下来我们再来讲解一些有关递归的习题。一.求n的阶乘    阶乘是指:n*(n-1)*(n-2)*······*2*1。    首先我们可以先利用循环实现上面的代码。代码如下:​intmain(){ intn=0; inta; intj=1......
  • 单链表算法题(数据结构)
    1.反转链表https://leetcode.cn/problems/reverse-linked-list/description/题目:看到这个题目的时候我们怎么去想呢?如果我们反应快的话,应该可以想到我们可以从1遍历到5然后依次头插,但是其实我们还有更好的办法,就是利用三个指针,如何使用呢?反转链表OJ假如结构体已经给出t......
  • 字符串搜索一把梭,hook libc.so系统库函数
    在安卓逆向过程,常常遇见一些加密字段没有写在java层,写在native层通过加密算法动态生成,但是只要是一个正常算法的生成,就一定会调用系统的库函数,故写了一段hook系统库函数的代码用于分析加密字符串的生成......
  • 浅谈贪心算法
    浅谈贪心算法贪心算法,指在问题求解时,每一步都做出“当前看起来最好的决策”。它没有固定的算法模板,灵活性强。在OI领域,无论是入门组,还是省选,NOI,或多或少都出过贪心题。可见贪心的重要性之大。使用贪心算法解决问题,必须满足“无后效性”。满足“无后效性”不一定当前的决策......
  • 2024年最新优化算法:海市蜃楼算法(Fata Morgana Algorithm ,FATA)介绍
    海市蜃楼算法(FataMorganaAlgorithm,FATA)是2024年提出一种新型的群体智能优化算法,它的设计灵感来源于自然现象中的海市蜃楼形成过程。FATA算法通过模仿光线在不均匀介质中的传播方式,提出了两种核心策略——海市蜃楼光过滤原则(MLF)和光传播策略(LPS)——来优化搜索过程,增强算法......
  • 二叉搜索树实现教程:用C++实现数据存储与查找
    文章目录1.二叉搜索树的概念2.二叉搜索树的性能分析3.二叉搜索树的插入4.二叉搜索树的查找5.二叉搜索树的删除6.⼆叉搜索树的实现代码7.⼆叉搜索树key和key/value使⽤场景7.1key搜索场景:7.2key/value搜索场景:7.3key/value⼆叉搜索树代码实现1.二叉搜索树......
  • c++的getline
    getline是C++标准库中的一个函数,用于从输入流中读取一行文本,包括空格和制表符等空白字符,直到遇到换行符为止。它通常用于读取包含空格的字符串。有人会问,为什么不用更好的cin,这是因为getline函数会读取包括空格在内的所有字符,直到遇到换行符为止。而 cin默认会在遇到第一......
  • C++内存泄漏检查工具——Valgrind(--tool = memcheck)
    在写c++程序中通常遇到程序崩溃,我们首先想到的是内存问题如果代码量少看几遍就能看得出来,如果代码量多起来我们就得借助一些工具了比如gdb调试和valgrind中得memcheck来解决内存问题我用的ubuntu,先安装valgrindsudoapt  updatesudoaptinstallvalgrindvalgrind--ve......