字符串查找
strchr,strrchr与strstr
功能:对字符串中的单个字符进行查找。
//strchr 函数原型的一般格式 char *strchr(const char *str, int c);
它表示在字符串str中查找字符,返回字符c第一次在字符串str中出现的位置,如果未找到字符c,则返回NULL。也就是说, strchr 函数在字符串str中从前到后(或者称为从左到右)查找字符c,找到字符c第一次出现的位置就返回,返回值指向这个位置,如果找不到字符c就返回NULL。
//strrchr 函数原型的一般格式 char *strrchr(const char *str, int c);
与 strchr 函数一样,它同样表示在字符串str中查找字符c,返回字符c第一次在字符串str中出现的位置,如果未找到字符c,则返回NULL。但两者唯一不同的是, strrchr 函数在字符串s中是从后到前(或者称为从右向左)查找字符c,找到字符c第一次出现的位置就返回,返回值指向这个位置。
代码示例
//strchr和strrchr函数使用演示 int main(void) { char str[] = "I welcome any ideas from readers, of course."; char *lc = strchr(str, 'o'); printf("strchr: %s ", lc); char *rc = strrchr(str, 'o'); printf("strrchr: %s ", rc); return 0; }
对于上面的示例代码, strchr 函数是按照从前到后的顺序进行查找,所以得到的结果为“ome any ideas from readers,of course.”; 而 strrchr 函数则相反,它按照从后到前的顺序进行查找,所以得到的结果为“ourse.”。
//示例代码运行结果 strchr: ome any ideas from readers, of course. strrchr: ourse.
【注意】函数的“c”参数是int类型,而不是char类型。这里用的是字符的ASCII 码(因为每个字符都对应着一个ASCII码),这样在传值的时候既可以传char类型的值,又可以传int类型的值(0~127)。
string类中的find系列函数
功能:在母串中查找子串。
find(str)
返回值是子串在母串中的位置(下标记录),如果没有找到,那么会返回一个特别的标记npos(返回值可以看成是一个int型的数)。
示例:
#include<cstring> #include<cstdio> #include<iostream> using namespace std; int main() { ////find函数返回类型 size_type string s("1a2b3c4d5e6f7jkg8h9i1a2b3c4d5e6f7g8ha9i"); string flag; string::size_type position; //find 函数 返回jk 在s 中的下标位置 position = s.find("jk"); if (position != s.npos) //如果没找到,返回一个特别的标志c++中用npos表示,我这里npos取值是4294967295, { printf("position is : %d " ,position); } else { printf("Not found the flag "); } }
find_first_of(str)和find_last_of(str)
返回子串出现在母串中的首次出现的位置,和最后一次出现的位置。
示例:
flag = "c"; position = s.find_first_of(flag); printf("s.find_first_of(flag) is :%d ",position); //5 position = s.find_last_of(flag); printf("s.find_last_of(flag) is :%d ",position); //25
find(str, pos)
查找某一给定位置后的子串的位置。
示例:
//从字符串s 下标5开始,查找字符串b ,返回b 在s 中的下标 position=s.find("b",5); cout<<"s.find(b,5) is : "<<position<<endl; //23
//查找s 中flag 出现的所有位置。 flag="a"; position=0; int i=1; while((position=s.find(flag,position))!=string::npos) { cout<<"position "<<i<<" : "<<position<<endl; position++; i++; }
rfind()
反向查找子串在母串中出现的位置。通常我们可以这样来使用,当正向查找与反向查找得到的位置不相同说明子串不唯一。
//反向查找,flag 在s 中最后出现的位置 flag="3"; position=s.rfind (flag); printf("s.rfind (flag) :%d ",position);
【find系列函数应用例题】
1.给出一个字符串,串中会出现有人名,找到一个只有一个人名的字符串。
#include <bits/stdc++.h> using namespace std; vector<string> s; int main() { s.push_back("Danil"); s.push_back("Olya"); s.push_back("Slava"); s.push_back("Ann"); s.push_back("Nikita");///建立动态数组 string a; cin>>a; int res = 0; for(int i = 0; i < 5; i++) { if(a.find(s[i]) != a.npos) { res++; if(a.rfind(s[i]) != a.find(s[i]))///一个字符中出现多个一样的名字 { res++; } } } if(res == 1) { cout<<"YES"<<endl; } else { cout<<"NO"<<endl; } return 0; }
2.你有n个字符串。 每个字符串由小写英文字母组成。 重新排序给定的字符串,使得对于每个字符串,在它之前的所有字符串都是它的子串。
https://www.cnblogs.com/wkfvawl/p/9229758.html
#include<string> #include<cstdio> #include<algorithm> #include<iostream> using namespace std; bool cmp(string a, string b) { if (a.length() == b.length()) return a < b; return a.length() < b.length(); } int main() { int n; string s[111]; scanf("%d", &n); for (int i = 0; i < n; i++) { cin >> s[i]; } sort(s, s + n, cmp); int flag = 1; for (int i = 1; i < n; i++) { if (s[i].find(s[i-1]) == string::npos) { flag = 0; break; } } if (flag) { cout << "YES" << endl; for (int i = 0; i < n; i++) { cout << s[i] << endl; } } else { cout << "NO" << endl; } return 0; }
3.查询区间内子串在母串中的个数。
https://www.cnblogs.com/wkfvawl/p/9452869.html
#include<cstdio> #include<cstring> #include<string> #include<iostream> #include<algorithm> using namespace std; int main() { int n,m,q,i,j,l,r,len; int counts; int vis[10010]; string s1,s2; cin>>n>>m>>q; cin>>s1>>s2; len=s2.size(); memset(vis,0,sizeof(vis)); string::size_type pos=0; while((pos=s1.find(s2,pos))!=string::npos) { vis[pos+1]=pos+1; pos++; } for(i=1;i<=q;i++) { counts=0; scanf("%d%d",&l,&r); for(j=l;j<=r;j++) { if(vis[j]!=0&&vis[j]+len-1<=r) { counts++; } } printf("%d ",counts); } return 0; }
类型转换
string类 <=> char数组
char[] => string
char ch [] = “ABCDEFG”; string str(ch); //也可string str = ch; //或者 char ch [] = “ABCDEFG”; string str; str = ch; //在原有基础上添加可以用str += ch;
string => char[]
char buf[10]; string str(“ABCDEFG”); length = str.copy(buf, 9); buf[length] = ‘0’; //或者 char buf[10]; string str(“ABCDEFG”); strcpy(buf, str.c_str()); //strncpy(buf, str.c_str(), 10);
string类 <=> int整型
int => string
(1)to_string函数
//c++11标准增加了全局函数std::to_string: string to_string (int val); string to_string (long val); string to_string (long long val); string to_string (unsigned val); string to_string (unsigned long val); string to_string (unsigned long long val); string to_string (float val); string to_string (double val); string to_string (long double val);
示例:
// to_string example #include <iostream> // std::cout #include <string> // std::string, std::to_string int main () { std::string pi = "pi is " + std::to_string(3.1415926); std::string perfect = std::to_string(1+2+4+7+14) + " is a perfect number"; std::cout << pi << ' '; std::cout << perfect << ' '; return 0; } Output pi is 3.141593 28 is a perfect number
//实现to_string函数 #include<iostream> #include<string> using namespace std; #define max 100 string to_String(int n) { int m = n; char s[max]; char ss[max]; int i=0,j=0; if (n < 0)// 处理负数 { m = 0 - m; j = 1; ss[0] = '-'; } while (m>0) { s[i++] = m % 10 + '0'; m /= 10; } s[i] = '