在学习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'都能够读入,可以试试题:UVa10361
下面看一个巩固练习:
/**1.string对象的定义和初始化以及读写**/
#include<iostream>
#include<string>
using namespace std;
int main()
{
string s1;
s1="i love you";
string s2(s1);//把s2初始化位s1的一个副本
//注意写法,不能前面先定义s2的类型后面直接写
//也不能定义两次s2
string s3("value");//将字符串s3初始化为一个字符串的副本
string s4(10,'s');//将s4初始化位's'的10个副本
cout<<s2<<" "<<s4<<endl;
cout<<s1<<endl<<endl;
string s5;
while (cin>>s5)//这里可以读入"hello world"测试
//只读取有效字符遇到空格结束
//while (getline(cin,s5))//读取字符,遇到换行结束
//while (getline(cin,s5,'a'))//遇到'a'结束,其中
//任何字符包括'\n'也能读入
{
cout<<s5[0]<<endl;
}
return 0;
}
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
!=,<,<=,>,>= 字符串比较,两个字符串短的与长的前面匹配,短的小于长的
巩固练习:
/**2.string对象的操作**/
#include<iostream>
#include<string>
using namespace std;
int main()
{
string str1;
string str2("the size of ");
string str3(" hello world ");//空格不会被忽略
str3+=str2;
str3.append("haha secessful");
cout<<str3<<endl;
cout<<"the size of is "<<str2.size()<<endl;
//注意这里取长度的str2.size(),和str2.length()
//str2.size()返回的值并不是int类型
//事实表明size_type储存的string长度是int所能储存的两倍
getline(cin,str1);
while (!str1.empty())
//返回一个bool值,空的话返回true,否则返回false
{
//也可直接用for循环输出
for (string::size_type i=0; i!=str1.size();i++)
{
//cout<<i<<"~~~~~"<<endl;
cout<<str1[i];
}
cout<<endl;
break;
}
return 0;
}
3:string对象中字符的处理(头文件cctype)
isalnum(c) 如果c是字母或数字,返回 true
isalpha(c) 如果c是字母,返回true
isdigit(c) 如果c是数字,返回false
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相反
看个巩固练习代码:
#include<stdio.h>
#include<ctype.h>
#include<string.h>
int main()
{
int a=5;
char ch='5';
// if (isalpha(ch))
// printf("%c\n",ch);
if (isdigit(ch)==true)
printf("%c\n",ch);
if (isdigit(a)==false)
printf("%d",a);
// printf("%d",'a'-87);
return 0;
}
猜猜运行结果。
/**3.string对象中的字符处理**/
#include<iostream>
#include<string>
#include<cctype>///头文件
using namespace std;
int main()
{
string str1="Hello World!!!";
string::size_type punct_cnt=0;
for (string::size_type i=0;i!=str1.size();i++)
{
if (ispunct(str1[i]))
punct_cnt++;
str1[i]=toupper(str1[i]);
}
cout<<punct_cnt<<endl;
cout<<str1<<endl;
return 0;
}
/**
isalnum(c)///如果c是字母或数字,返回true
isalpha(c)///如果c是字母,返回true
tolower(c)///如果是大写字符,则返回其小写字母,否则返回c
toupper(c)///与tolower(c)相反
islower(c)///如果是小写字母,则为true
isupper(c)///如果是大写字母,则为true
ispunct(c)///如果是标点符号,则为true
iscntrl(c)///如果c是控制符,返回true
isdigit(c)///如果c是数组,返回true
isgraph(c)///如果c不是空格,则可打,则为true
isprint(c)///如果是可打印字符,则为true
isspace(c)///如果是空白字符,则为true
isxdigit(c)///如果是十六进制,则为true
**/
4:string对象中一些函数
s.insert( it , 'p' ); 把p插入到it的位置
s.erase( 3 )||s.erase ( 0 , 4 ) ; 删除第四个元素或第一到第五个元素
s.replace ( 3 , 3 , " good " ) ; 从第三个起连续三个替换为good
s.find ( " cat " ) ; 超找第一个出现的字符串”cat“,返回其下标值,查不到返回 4294967295,也可查找字符;
s.compare ( " good " ) ; s与”good“比较相等返回0,比"good"大返回1,小则返回-1;
reverse ( s.begin(), s.end () ); 反向排序函数,即字符串反转函数
s.substr(i,j) 去s串中从i到j的子串 //string::npos 判断字符串是否结束
下面看一些巩固练习:
/**4.string对象中的一些函数**/
#include<iostream>
#include<string>
#include<algorithm>
using namespace std;
int main()
{
string s;
s="54268713";
reverse(s.begin(),s.end());
cout<<s<<endl;
string s1="i love you";
string::iterator it;
it=s1.begin();
cout<<s1<<endl;
string s2("abc123456");
string::iterator it2=s2.begin();
// s2.erase(it2+6);
cout<<s2<<endl;
//s2.erase(1,6);///删除第1个到第6个元素
s2.erase(0,6);///如果有0,删除第0个到第6个之前的元素
cout<<s2<<endl;
s2.replace(2,1,"good");
cout<<s2<<endl;
cout<<s2.find("good")<<endl;
cout<<s2.compare("12good56")<<endl;
cout<<s2.compare("12good5678")<<endl;
return 0;
}
/**
s.insert(it,'p')///把p插入到it的位置
s.erase(3)||s.erase(0,4)///删除第四个元素第一个到第五个元素
s.replace(3,3,"good")///从第三个其连续三个替换为good
s.find("cat")///找出第一个出现的字符串"cat",返回其下标值
///查找不到返回4294967295,也可查找字符
s.compare("good")///相等返回0,大返回1,小返回-1
reverse(s.begin(),s.end())///反转字符串
s.substr(i,j)///去掉i到j的子串
///string::npos判断字符串是否结束
**/
5:string的一些常用操作及用法
***string对象作为vector元素
***string对象的数字化处理
***string对象与sscanf函数
直接代码:
#include <iostream>
#include <algorithm>
#include <string>
#include <numeric>
#include <vector>
#include <cstdio>
using namespace std;
int main(int argc,char *argv[])
{
vector<string> v; //vector的string
v.push_back("Iack");
v.push_back("Mike");
v.push_back("Tom cluce");
cout<<v[0]<<endl;
cout<<v[1][1]<<endl;
cout<<v[2].size()<<endl;
char s3[100],s2[100];
string str3,str2;
int ab,ac,ad;
sscanf("abc fsaf","%s %s",s2,s3); //注意string不能直接用于sscanf
str3=s3;str2=s2;
cout<<str3<<" "<<str2<<endl;
sscanf("4,5$10000","%d,%d$%d",&ab,&ac,&ad);
cout<<ab<<" "<<ac<<" "<<ad<<endl;
char s[200];
cin>>s;
cin>>s;
string s1=s;
printf(s1.c_str()); //c输出字符串对象
return 0;
}
6:string与数值的相互转换
注意下面c++的两个转化函数,比较好用,也比较常用、
#include <iostream>
#include <algorithm>
#include <string>
#include <numeric>
#include <vector>
#include <cstdio>
#include <sstream>
using namespace std;
//c++方法:将数值转换为string
string convert_to_string(double x)
{
ostringstream o;
if(o << x)
return o.str();
return "conversion error";
}
//c++方法,将string转化为数值
double convert_from_string(const string &s)
{
istringstream i(s);
double x;
if(i >> x)
return x;
return 0.0;
}
int main(int argc,char *argv[])
{
//将数值转换为string的第一种方法:c方法
char b[10];
string a;
sprintf(b,"%d",1975); //数值转化为string
a=b;
cout<<a<<endl;
string cc=convert_to_string(1976);
cout<<cc<<endl;
string dd="115165";
int p=convert_from_string(dd)+2;
cout<<p<<endl;
return 0;
}
下面推荐一些字符串的题目
hdoj 2017(ac) 字符串中统计数字,直接调用上面s.digit()函数
hdoj 1020(ac) 判断输出重复、水题、
hdoj 1062 (ac)逆转字符串 注意1:getchar()吸收3后'\n'; 2: 空格不止有一个
hdoj 1039(ac),字符串处理,清晰思路,可以写三个判断条件的3个函数,调用函数判断,思路清晰,容易判断;
hdoj 1088 对字符串按一个一个处理。一次性输入一行不好控制
hdoj 1113 map容器+字典序。值得做
hdoj 1161(ac) 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、
比较详细,希望帮助到了跟我一样正在学习中的菜鸟、、、