[置顶] C++ Primer 学习笔记_32_STL实践与分析(6) --再谈string类型(下)



STL实践与分析

--再谈string类型(下)



四、string类型的查找操作

    string类型提供了6种查找函数,每种函数以不同形式的find命名。这些操作全部返回string::size_type类型的值,以下标的方式标记查找匹配所发生的位置;或者返回一个string::npos的特殊值,说明查找没有匹配。string类将npos定义为保证大于任何有效下标的值。

string类型的查找操作(参数在下表定义)

s.find(args)

s中查找args第一次出现

s.rfind(args)

s中查找args最后一次出现

s.find_first_of(args)

s中查找args任意字符第一次出现

s.find_last_of(args)

s中查找args的任意字符的最后一次出现

s.find_first_not_of(args)

s中查找第一个不属于args的字符

s.find_last_not_of(args)

s中查找最后一个不属于args的字符


    每种查找都有4个重载版本,每个版本使用不同的参数集合。这些操作的不同之处在于查找的到底是单个字符、另一个string字符串、C风格的以空字符结束的字符串,还是用字符数组给出的特定数据的字符集合。

string类型提供的find操作的参数

c,pos

s,从下标pos标记的位置开始,查找字符cpos的默认值为0

s2,pos

s,从下标pos标记的位置开始,查找string对象s2pos的默认值为0

cp,pos

s,从下标pos标记的位置形参,查找指针cp所指向的C风格的以空字符结束的字符串pos的默认值为0

cp,pos,n

s,从下标pos标记的位置开始,查找指针cp所指向数组的前 n个字符posn都没有默认值


1、精确匹配查找

   find函数,如果找到的话,则返回第一次匹配的下标值;如果找不到,则返回npos

[html] view plain copy print ?
  1. string name("AnnaBelle");  
  2. string::size_type pos = name.find("Anna");  

    默认情况下,find操作以及其他处理字符的string操作使用内置操作符比较string字符串中的字符。因此,这些操作(以及其他string操作)都区分字母的大小写;

[html] view plain copy print ?
  1. string lowerCase("annabelle");  
  2. string::size_type pos = lowerCase.find("Anna");  
  3. if (pos != string::npos)  
  4. {  
  5.     cout << lowerCase[pos] << endl;  
  6. }  

find操作的返回类型是string::size_type类型,请使用该类型的对象存储find的返回值。


2、查找任意字符

[html] view plain copy print ?
  1. //在name中寻找并定位第一个数字  
  2. string numeric("1234567890");  
  3. string name("r2d2");  
  4. string::size_type pos = name.find_first_of(numeric);  
  5. cout << pos << endl  
  6.      << name[pos] << endl;  

【谨记:】

    string对象的元素下标从0开始计数;


3、指定查找的起点

程序员可以给find操作传递一个可选的起点位置实参,用于指定开始查找的下标位置,该位置实参的默认值为0。通常的编程模式是使用这个可选的实参循环查找string对象中所有的匹配

[html] view plain copy print ?
  1. //重写查找“r2d2”的程序,以便找出 name 字符串中出现的所有数字:  
  2. string numeric("0123456789");  
  3. string name("r2d25");  
  4. string::size_type pos = 0;  
  5.   
  6. while ((pos = name.find_first_of(numeric,pos)) != string::npos)  
  7. {  
  8.     cout << name[pos] << endl;  
  9.     ++ pos;  
  10. }  

pos必须+1,以确保下一次循环从刚找到的数字后面开始查找下一个数字。


4、寻找不匹配点

    调用find_first_not_of函数查找第一与实参不匹配的位置:

[html] view plain copy print ?
  1. //在 string 对象中寻找第一个非数字字符  
  2. string numeric("1234567890");  
  3. string dept("03714p3");  
  4. string::size_type pos = dept.find_first_not_of(numeric);  
  5. if (pos != string::npos)  
  6. {  
  7.     cout << dept[pos] << endl;  
  8. }  

5、反向查找

    迄今为止,我们使用的所有find操作都是从左向右查找的。除此之外,标准库还提供了一组类似的从右向左查找string对象的操作。Rfind成员函数用于寻找最后一个– 也就是最右边 – 制定子串出现的位置:

[html] view plain copy print ?
  1. string river("Miississippi");  
  2. string::size_type first_pos = river.find("is");  
  3. if (first_pos != string::npos)  
  4. {  
  5.     cout << "first_pos: " << first_pos << endl;  
  6. }  
  7.   
  8. string::size_type last_pos = river.rfind("is");  
  9. if (last_pos != string::npos)  
  10. {  
  11.     cout << "last_pos: " << last_pos << endl;  
  12. }  

6find_last函数

   find_last函数类似对应的find_first函数,唯一的差别在于find_last函数返回最后一个匹配的位置,而不是第一个

    1)find_last_of函数查找与目标字符串的任意字符匹配的最后一个字符。

    2)find_last_not_of函数查找最后一个不能跟目标字符串的任何字符匹配的字符。

  这两个操作都提供第二个参数,这个参数是可选的,用于指定在string对象中开始查找的位置

[html] view plain copy print ?
  1. //P297 习题9.38  
  2.     //(1)  
  3.     string str("ab2c3d7R4E6");  
  4.     string numeric("0123456789");  
  5.     string::size_type pos = 0;  
  6.   
  7.     while ((pos = str.find_first_of(numeric,pos)) != string::npos)  
  8.     {  
  9.         cout << str[pos] << endl;  
  10.         ++ pos;  
  11.     }  

[cpp] view plain copy print ?
  1. //(2)  
  2. string str("ab2c3d7R4E6");  
  3. string numeric("0123456789");  
  4. string::size_type pos = 0;  
  5.   
  6. while ((pos = str.find_first_not_of(numeric,pos)) != string::npos)  
  7. {  
  8.     cout << str[pos] << endl;  
  9.     ++ pos;  
  10. }  

[cpp] view plain copy print ?
  1. //习题9.39  
  2. #include <iostream>  
  3. #include <sstream>  
  4. #include <stack>  
  5. using namespace std;  
  6.   
  7. int main()  
  8. {  
  9.     string line1 = "We were her pride of 10 she named us:";  
  10.     string line2 = "Benjamin, Phoenix, the Prodigal";  
  11.     string line3 = "and perspicacious pacific Suzanne";  
  12.   
  13.     string sentence = line1 + ' ' + line2 + ' ' + line3;  
  14.     istringstream item(sentence);  
  15.   
  16.     unsigned int shoest = 1000;  
  17.     unsigned int lonest = 0;  
  18.   
  19.     stack<string> shoSta;  
  20.     stack<string> lonSta;  
  21.     string word;  
  22.   
  23.     int wordCnt = 0;  
  24.     while (item >> word)  
  25.     {  
  26.         ++ wordCnt;  
  27.         if (word.size() > lonest)  
  28.         {  
  29.             lonest = word.size();  
  30.             while (!lonSta.empty())  
  31.             {  
  32.                 lonSta.pop();  
  33.             }  
  34.             lonSta.push(word);  
  35.         }  
  36.         else if (word.size() == lonest)  
  37.         {  
  38.             lonSta.push(word);  
  39.         }  
  40.   
  41.         if (word.size() < shoest)  
  42.         {  
  43.             shoest = word.size();  
  44.             while (!shoSta.empty())  
  45.             {  
  46.                 shoSta.pop();  
  47.             }  
  48.             shoSta.push(word);  
  49.         }  
  50.         else if(word.size() == shoest)  
  51.         {  
  52.             shoSta.push(word);  
  53.         }  
  54.     }  
  55.     cout << wordCnt << endl;  
  56.   
  57.     cout << endl << "Longest Word:" << endl;  
  58.     while (!lonSta.empty())  
  59.     {  
  60.         cout << lonSta.top() << endl;  
  61.         lonSta.pop();  
  62.     }  
  63.   
  64.     cout << endl << "Shortest Word:" << endl;  
  65.     while (!shoSta.empty())  
  66.     {  
  67.         cout << shoSta.top() << endl;  
  68.         shoSta.pop();  
  69.     }  
  70. }  

五、string对象的比较

1、传统的操作符比较

    string类型定义了所有关系操作符,使程序员可以比较两个string对象是否相等(==)、不等(!=),以及实现小于或大于(<<=>>=)运算。string对象采用字典顺序比较,也就是说,string对象的比较与大小写敏感的字典顺序比较相同

2compare函数

    操作的结果类似于C语言中的strcmp函数:

string类型的compare操作

s.compare(s2)

比较ss2

s.compare(pos1,n1,s2)

s中从pos下标位置开始的n1个字符与s2做比较

s.compare(pos1,n1,s2,pos2,n2)

s中从pos1下标位置开始的n1个字符与s2中从pos2下标位置开始的n2个字符做比较

s.compare(cp)

比较scp所指向的以空字符结束的字符串

s.compare(pos1,n1,cp)

s中从pos1下标位置开始的n1个字符与cp所指向的字符串做比较

c.compare(pos1,n1,cp,n2)

s中从pos1下标位置开始的n1个字符与cp所指向的字符串的前n2个字符做比较

compare函数返回下面列出的三种可能值之一:

    1)正数,此时s1大于 args所代表的string对象。

    2)负数,此时s1小于 args所代表的string对象。

    3)0,此时 s1恰好等于 args所代表的string对象。

[html] view plain copy print ?
  1. string cobol_program_crash("abend");  
  2. string cplus_program_crash("abort");  
  3.   
  4. cout << cobol_program_crash.compare(cplus_program_crash) << endl;  
  5. cout << cplus_program_crash.compare(cobol_program_crash) << endl;  

compare函数提供了6个重载版本,方便程序员实现一个或两个string对象的子串的比较,以及string对象与字符数组或其中一部分的比较:

[html] view plain copy print ?
  1. char second_ed[] = "C++ Primer, 2nd Edition";  
  2. string third_ed("C++ Primer, 3rd Edition");  
  3. string fourth_ed("C++ Primer, 4th Edition");  
  4.   
  5. cout << fourth_ed.compare(second_ed) << endl;  
  6. cout << fourth_ed.compare(fourth_ed.find("4th"),3,  
  7.                           third_ed,third_ed.find("3rd"),3)  
  8.      << endl;  

[html] view plain copy print ?
  1. //P299 习题9.40  
  2. int main()  
  3. {  
  4.     string q1("When lilacs last in the dooryard bloom`d");  
  5.     string q2("The child is father of the man");  
  6.     string sentence;  
  7.     sentence.assign(q2,0,12);  
  8.     sentence.append(q1,16,16);  
  9.     cout << sentence << endl;  
  10. }  

[html] view plain copy print ?
  1. //习题9.41  
  2. string greet(string form,string lastname,string title,  
  3.              string::size_type pos,int length)  
  4. {  
  5.     string::iterator beg,end;  
  6.   
  7.     beg = form.begin() + form.find("Daisy");  
  8.     end = beg + 5;  
  9.   
  10.     form.replace(beg,end,lastname);  
  11.   
  12.     beg = form.begin() + form.find("Ms");  
  13.     end = beg + 2;  
  14.   
  15.     form.replace(beg,end,title.substr(pos,length));  
  16.   
  17.     return form;  
  18. }  
  19. /*  
  20. string greet(string form,string lastname,string title,  
  21.              string::size_type pos,int length)  
  22. {  
  23.     form.replace(form.find("Daisy"),5,lastname);  
  24.     form.replace(form.find("Ms"),2,title,pos,length);  
  25.   
  26.     return form;  
  27. }  
  28. */  
  29. int main()  
  30. {  
  31.     string generic1("Dear Ms Daisy:");  
  32.     string generic2("MrsMsMisssPeople");  
  33.     string lastName("AnnaP");  
  34.     string salute = greet(generic1,lastName,generic2,5,4);  
  35.     cout << salute << endl;  
  36. }  

你可能感兴趣的:(C++,find,find_first_of,反向查找,string对象的比较)