C++STL之string (轉)

在學習c++STL中的string,在這裏作個筆記,以供本身之後翻閱和初學者參考。html

1:string對象的定義和初始化以及讀寫ios

string s1;      默認構造函數,s1爲空串c++

string s2(s1);   將s2初始化爲s1的一個副本git

string s3("valuee");   將s3初始化一個字符串面值副本數組

string s4(n,'c');   將s4 初始化爲字符'c'的n個副本app

cin>>s5;  讀取有效字符到遇到空格函數

getline(cin,s6);  讀取字符到遇到換行,空格可讀入,知道‘\n’結束(練習在下一個代碼中),學習

getline(cin,s7,'a'); 一個直到‘a’結束,其中任何字符包括'\n'都可以讀入,能夠試試題:UVa10361測試

下面看一個鞏固練習:spa

 

  1. #include <iostream> 
  2. #include <string> 
  3. using namespace std; 
  4. int main() 
  5.     string s1; 
  6.     s1="i love you"; 
  7.     string s2(s1);  //把s2初始化爲s1的一個副本,注意寫法,不能前面先定義s2的類型後面直接寫,也不能定義兩次s2 
  8.     string s3("value");  //將s3初始化一個字符串面值副本 
  9.     string s4(10,'s');   //將s4初始化爲字符‘s'的10個副本 
  10.     /*注意字符串面值與標準庫string不是同一個類型*/ 
  11.     cout<<s2<<" "<<s3<<" "<<s4<<endl; 
  12.     string s5; 
  13.     while(cin>>s5)  //這裏能夠輸入「  hello world  」測試,發現只讀取有效字符到遇到空格結束 
  14.     { 
  15.         cout<<s5<<endl; 
  16.     } 
  17.     return 0; 
#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個副本
    /*注意字符串面值與標準庫string不是同一個類型*/
    cout<<s2<<" "<<s3<<" "<<s4<<endl;
    string s5;
    while(cin>>s5)  //這裏能夠輸入「  hello world  」測試,發現只讀取有效字符到遇到空格結束
    {
        cout<<s5<<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

!=,<,<=,>,>=  字符串比較,兩個字符串短的與長的前面匹配,短的小於長的

鞏固練習:

 

  1. #include <iostream> 
  2. #include <string> 
  3. using namespace std; 
  4. int main() 
  5.     string str1; 
  6.     string str2("the size of "); 
  7.     string str3=" hello world  ";//空格不會忽略 
  8.     str3+=str2; 
  9.     str3.append("haha secessful"); 
  10.     cout<<str3<<endl; 
  11.     cout<<"the size of is "<<str2.size()<<endl; 
  12.     /*注意這裏取長度的str2.size(),和str2.length(),可是注意str2.size()返回的值並非int類型,
  13.     事實代表size_type存儲的string長度是int所能存儲的兩倍*/ 
  14.     getline(cin,str1);  //read line at time until end-of-file,注意寫法。 
  15.     while(!str1.empty())  //返回一個bool值,空的話返回true,不然返回false。 
  16.     { 
  17.         for(string::size_type i=0;i!=str1.size();++i)  //注意size_type類型 
  18.         { 
  19.             cout<<str1[i]; 
  20.         } 
  21.         cout<<endl;break; 
  22.     } 
  23.     return 0; 
#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);  //read line at time until end-of-file,注意寫法。
    while(!str1.empty())  //返回一個bool值,空的話返回true,不然返回false。
    {
        for(string::size_type i=0;i!=str1.size();++i)  //注意size_type類型
        {
            cout<<str1[i];
        }
        cout<<endl;break;
    }
    return 0;
}

 

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相反

看一個鞏固練習代碼:

 

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

4:string對象中一些函數

/*-------------------------插入函數----------------------------------包括迭代器操做和下標操做,下標操做更靈活*/

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

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

s.insert(p,b,e);     迭代器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); 用迭代器b到e範圍內的元素替換s

s.assign(n,t); 用n個t的副本替換s

a.assign(s1,pos2,len);從s1的下標pos2開始連續替換len個。

s.replace ( 3 , 3 , " good " ) ;   從第三個起連續三個替換爲good

s.substr(i,j)   截取s串中從i到j的子串  //string::npos  判斷字符串是否結束

/*-----------------------刪除函數-----------------------------*/

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 () );  反向排序函數,即字符串反轉函數

 

下面看一些鞏固練習:

 

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

    string s1="i love you";
    string::iterator it;
    it=s1.begin();
    s1.insert(it+1,'p');  //插入
    cout<<s1<<endl;

    string s2("abc123456");
    string::iterator it2=s2.begin();
    s2.erase(it2+6);  //刪除
    cout<<s2<<endl;
    s2.erase(it2,it2+3);
    cout<<s2<<endl;
    s2.replace(2,1,"good");  //替換
    cout<<s2<<endl;
    cout<<s2.find("good")<<endl;  //搜索返回下標值
    cout<<s2.compare("12good56")<<endl;  //比較,自行修改值看其返回值
    cout<<s2.compare("12good56758")<<endl;

    return 0;
}

5:string的一些經常使用操做及用法

***string對象做爲vector元素

***string對象的數字化處理

***string對象與sscanf函數

直接代碼:

 

  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.     vector<string> v;   //vector的string 
  10.     v.push_back("Iack"); 
  11.     v.push_back("Mike"); 
  12.     v.push_back("Tom cluce"); 
  13.     cout<<v[0]<<endl; 
  14.     cout<<v[1][1]<<endl; 
  15.     cout<<v[2].size()<<endl; 
  16.  
  17.     char s3[100],s2[100]; 
  18.     string str3,str2; 
  19.     int ab,ac,ad; 
  20.     sscanf("abc fsaf","%s %s",s2,s3);  //注意string不能直接用於sscanf 
  21.     str3=s3;str2=s2; 
  22.     cout<<str3<<" "<<str2<<endl; 
  23.     sscanf("4,5$10000","%d,%d$%d",&ab,&ac,&ad); 
  24.     cout<<ab<<" "<<ac<<" "<<ad<<endl; 
  25.  
  26.     char s[200]; 
  27.     cin>>s; 
  28.     cin>>s; 
  29.     string s1=s; 
  30.     printf(s1.c_str());  //c輸出字符串對象 
  31.  
  32.     return 0; 
#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++的兩個轉化函數,比較好用,也比較經常使用、

 

  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.     ostringstream o; 
  13.     if(o << x) 
  14.         return o.str(); 
  15.     return "conversion error"; 
  16. //c++方法,將string轉化爲數值 
  17. double convert_from_string(const string &s) 
  18.     istringstream i(s); 
  19.     double x; 
  20.     if(i >> x) 
  21.         return x; 
  22.     return 0.0; 
  23. int main(int argc,char *argv[]) 
  24.     //將數值轉換爲string的第一種方法:c方法 
  25.     char b[10]; 
  26.     string a; 
  27.     sprintf(b,"%d",1975);  //數值轉化爲string 
  28.     a=b; 
  29.     cout<<a<<endl; 
  30.  
  31.     string cc=convert_to_string(1976); 
  32.     cout<<cc<<endl; 
  33.  
  34.     string dd="115165"; 
  35.     int p=convert_from_string(dd)+2; 
  36.     cout<<p<<endl; 
  37.     return 0; 
#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 字符串中統計數字,直接調用上面s.digit()函數 hdoj 1020  判斷輸出重複、水題、 hdoj 1062 逆轉字符串 注意1:getchar()吸取3後'\n',2:空格不止有一個 hdoj 1039,字符串處理,清晰思路,能夠寫三個判斷條件的3個函數,調用函數判斷,思路清晰,容易判斷; hdoj 1088 對字符串按一個一個處理。一次性輸入一行很差控制 hdoj 1113 map容器+字典序。值得作 hdoj 1161 tolower() 函數轉化爲小寫就ok 1200、125一、125六、128八、132一、132八、137九、180四、1860、 198二、198四、201七、202四、202五、202六、202七、204三、205二、205四、207二、207四、208七、213一、 213七、2140、216三、220三、220六、235二、2500、254九、256四、256五、256七、257二、260九、260七、 270七、270八、271九、272一、272三、

比較詳細,但願幫助到了跟我同樣正在學習中的菜鳥、、、

相關文章
相關標籤/搜索