在学习c++STL中的string,在这里做个笔记,以供自己以后翻阅和初学者参考。

1:string对象的定义和初始化以及读写

string s1;      默认构造函数,s1为空串

string s2(s1);   将s2初始化为s1的一个副本

string s3("valuee");   将s3初始化一个字符串面值副本

string s4(n,'c');   将s4 初始化为字符'c'的n个副本

cin>>s5;  读取有效字符到遇到空格

getline(cin,s6);  读取字符到遇到换行,空格可读入,知道‘\n’结束(练习在下一个代码中),

getline(cin,s7,'a'); 一个直到‘a’结束,其中任何字符包括'\n'都能够读入,

下面看一个巩固练习

[cpp]  view plain copy print ?

1. #include <iostream>  
2. #include <string>  
3. using namespace std;  
4. int main()  
5. {  
6.     string s1;  
7. "i love you";  
8. //把s2初始化为s1的一个副本,注意写法,不能前面先定义s2的类型后面直接写,也不能定义两次s2  
9. "value");  //将s3初始化一个字符串面值副本  
10. 's');   //将s4初始化为字符‘s'的10个副本  
11. /*注意字符串面值与标准库string不是同一个类型*/  
12. " "<<s3<<" "<<s4<<endl;  
13.     string s5;  
14. while(cin>>s5)  //这里可以输入“  hello world  ”测试,发现只读取有效字符到遇到空格结束  
15.     {  
16.         cout<<s5<<endl;  
17.     }  
18. return 0;  
19. }

2:string对象操作

s.empty()  判断是否为空,bool型

s.size() 或 s.length() 返回字符的个数

s[n]  返回位置为n的字符,从0开始计数

s1+s2 连接,看下面例子:

    可用此方法给字符串后面添加字符如:s=s+'a'; 

    a:  string s2=s1+", ";  //对,把一个string对象和一个字符面值连接起来是允许的

    b:  string s4="hello "+", ";   //错,不能将两个字符串面值相加

    c:  string s5=s1+", "+"world";   //对,前面两个相加相当于一个string对象;

    d:  string s6="hello" + ", " +  s2;  //错

(注:字符串尾部追加还可用s.append("abc")函数添加)

s1=s2  替换

s1==s2  相等,返回true或false

!=,<,<=,>,>=  字符串比较,两个字符串短的与长的前面匹配,短的小于长的

巩固练习:

[cpp]  view plain copy print ?

1. #include <iostream>  
2. #include <string>  
3. using namespace std;  
4. int main()  
5. {  
6.     string str1;  
7. "the size of ");  
8. " hello world  ";//空格不会忽略  
9.     str3+=str2;  
10. "haha secessful");  
11.     cout<<str3<<endl;  
12. "the size of is "<<str2.size()<<endl;  
13. /*注意这里取长度的str2.size(),和str2.length(),但是注意str2.size()返回的值并不是int类型,
14.     事实表明size_type存储的string长度是int所能存储的两倍*/  
15. //read line at time until end-of-file,注意写法。  
16. while(!str1.empty())  //返回一个bool值,空的话返回true,否则返回false。  
17.     {  
18. for(string::size_type i=0;i!=str1.size();++i)  //注意size_type类型  
19.         {  
20.             cout<<str1[i];  
21.         }  
22. break;  
23.     }  
24. return 0;  
25. }




3:string对象中字符的处理(头文件cctype)

    isalnum(c)  如果c是字母或数字,返回 true

    isalpha(c)  如果c是字母,返回true

    iscntrl(c)  c是控制符,返回true

    isdigit(c)  如果c是数组,返回true

    isgraph(c)  如果c不是空格,则可打印,,则为true

    islower(c)  如果c是小写字母,则为true

    isupper(c)  如果c是大写字符,则为true

    isprint(c)  如果c是可打印的字符,则为true

    ispunct(c)  如果c是标点符号,则为true

    isspace(c) 如果c是空白字符,则为true

    isxdigit(c) 如果c是十六进制数,则为true

    tolower(c) 如果c是大写字符,则返回其小写字母,否则直接返回c

    toupper(c)  跟tolower相反

看一个巩固练习代码:


[cpp]  view plain copy print ?

1. #include <iostream>  
2. #include <string>  
3. #include <cctype>  
4. using namespace std;  
5. int main()  
6. {  
7. "Hello World!!!";  
8.     string::size_type punct_cnt = 0;  
9. for(string::size_type i=0;i!=str1.size();++i)  
10.     {  
11. if(ispunct(str1[i]))  
12.             ++punct_cnt;  
13.         str1[i]=toupper(str1[i]);  
14.     }  
15. "字符中标点符号有:"<<punct_cnt<<endl;  
16.     cout<<str1<<endl;  
17. return 0;  
18. }

4:string对象中一些函数

/*-------------------------插入函数----------------------------------包括迭代器操作和下标操作,下标操作更灵活*/

s.insert( it , p );  把字符串p插入到it的位置

s.insert(p,n,t);   迭代器p元素之前插入n个t的副本

s.insert(p,b,e);

s.insert(p,s2,poe2,len); 在下标p之前插入s2下标从poe2开始长度为len的元素

s.insert(pos,cp,len);  下标pos之前插入cp数组的前len个元素。

/*-----------------------替换函数-------------------------------*/

s.assign(b,e);

s.assign(n,t);

a.assign(s1,pos2,len);从s1的下标pos2开始连续替换len个。

s.replace ( 3 , 3 , " good " ) ;   从第三个起连续三个替换为good

s.substring(i,j)   截取s串中从i到j的子串  //string::npos  判断字符串是否结束

s.substr(int pos = 0 , int n = npos)  返回pos开始的n个字符组成的字符串

/*-----------------------删除函数-----------------------------*/

s.erase( 3 )||s.erase ( 0 , 4 ) ;  删除第四个元素或第一到第五个元素

/*----------------------其他函数-----------------------------*/

s.find ( " cat " ) ;  超找第一个出现的字符串”cat“,返回其下标值,查不到返回 4294967295,也可查找字符;

s.append(args); 将args接到s的后面

s.compare ( " good " ) ;  s与”good“比较相等返回0,比"good"大返回1,小则返回-1;

reverse ( s.begin(), s.end () );  反向排序函数,即字符串反转函数


下面看一些巩固练习:


[cpp]  view plain copy print ?

    1. #include <iostream>  
    2. #include <algorithm>  
    3. #include <string>  
    4. #include <numeric>  
    5. using namespace std;  
    6. int main(int argc,char *argv[])  
    7. {  
    8.     string s;  
    9. "54268713";  
    10. //字符串反转  
    11.     cout<<s<<endl;  
    12.   
    13. "i love you";  
    14.     string::iterator it;  
    15.     it=s1.begin();  
    16. 'p');  //插入  
    17.     cout<<s1<<endl;  
    18.   
    19. "abc123456");  
    20.     string::iterator it2=s2.begin();  
    21. //删除  
    22.     cout<<s2<<endl;  
    23.     s2.erase(it2,it2+3);  
    24.     cout<<s2<<endl;  
    25. "good");  //替换  
    26.     cout<<s2<<endl;  
    27. "good")<<endl;  //搜索返回下标值  
    28. "12good56")<<endl;  //比较,自行修改值看其返回值  
    29. "12good56758")<<endl;  
    30.   
    31. return 0;  
    32. }

    5:string的一些常用操作及用法

    ***string对象作为vector元素

    ***string对象的数字化处理

    ***string对象与sscanf函数

    直接代码:


    [cpp]  view plain copy print ?

    1. #include <iostream>  
    2. #include <algorithm>  
    3. #include <string>  
    4. #include <numeric>  
    5. #include <vector>  
    6. #include <cstdio>  
    7. using namespace std;  
    8. int main(int argc,char *argv[])  
    9. {  
    10. //vector的string  
    11. "Iack");  
    12. "Mike");  
    13. "Tom cluce");  
    14.     cout<<v[0]<<endl;  
    15.     cout<<v[1][1]<<endl;  
    16.     cout<<v[2].size()<<endl;  
    17.   
    18. char s3[100],s2[100];  
    19.     string str3,str2;  
    20. int ab,ac,ad;  
    21. "abc fsaf","%s %s",s2,s3);  //注意string不能直接用于sscanf  
    22.     str3=s3;str2=s2;  
    23. " "<<str2<<endl;  
    24. "4,5$10000","%d,%d$%d",&ab,&ac,&ad);  
    25. " "<<ac<<" "<<ad<<endl;  
    26.   
    27. char s[200];  
    28.     cin>>s;  
    29.     cin>>s;  
    30.     string s1=s;  
    31. //c输出字符串对象  
    32.   
    33. return 0;  
    34. }


    6:string与数值的相互转换

    注意下面c++的两个转化函数,比较好用,也比较常用、


    [cpp]  view plain copy print ?

    1. #include <iostream>  
    2. #include <algorithm>  
    3. #include <string>  
    4. #include <numeric>  
    5. #include <vector>  
    6. #include <cstdio>  
    7. #include <sstream>  
    8. using namespace std;  
    9.   
    10. //c++方法:将数值转换为string  
    11. string convert_to_string(double x)  
    12. {  
    13.     ostringstream o;  
    14. if(o << x)  
    15. return o.str();  
    16. return "conversion error";  
    17. }  
    18. //c++方法,将string转化为数值  
    19. double convert_from_string(const string &s)  
    20. {  
    21.     istringstream i(s);  
    22. double x;  
    23. if(i >> x)  
    24. return x;  
    25. return 0.0;  
    26. }  
    27. int main(int argc,char *argv[])  
    28. {  
    29. //将数值转换为string的第一种方法:c方法  
    30. char b[10];  
    31.     string a;  
    32. "%d",1975);  //数值转化为string  
    33.     a=b;  
    34.     cout<<a<<endl;  
    35.   
    36.     string cc=convert_to_string(1976);  
    37.     cout<<cc<<endl;  
    38.   
    39. "115165";  
    40. int p=convert_from_string(dd)+2;  
    41.     cout<<p<<endl;  
    42. return 0;  
    43. }


    下面推荐一些字符串的题目

    hdoj 2017 字符串中统计数字,直接调用上面s.digit()函数

    hdoj 1020  判断输出重复、水题、

    hdoj 1062 逆转字符串 注意1:getchar()吸收3后'\n',2:空格不止有一个

    hdoj 1039,字符串处理,清晰思路,可以写三个判断条件的3个函数,调用函数判断,思路清晰,容易判断;

    hdoj 1088 对字符串按一个一个处理。一次性输入一行不好控制

    hdoj 1113 map容器+字典序。值得做

    hdoj 1161 tolower() 函数转化为小写就ok

    1200、1251、1256、1288、1321、1328、1379、1804、1860、 1982、1984、2017、2024、2025、2026、2027、2043、2052、2054、2072、2074、2087、2131、 2137、2140、2163、2203、2206、2352、2500、2549、2564、2565、2567、2572、2609、2607、 2707、2708、2719、2721、2723、