關於對字串、陣列處理的常見問題與方法,如獲取帶有空格字串長度,陣列長度等。getline(),sprintf()使用。
最近在刷題,遇到對字串處理的題目,真是有點頭疼。我先介紹幾個對字串操作非常實用的方法吧。
1.字串連線函式strcat(string catenate縮寫),函式原型為 strcat(char[ ], const char[ ])
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
char str1[30]="Give you some color,";
char str2[]="see see!";
cout<<strcat(str1,str2); //str1與str2連線後的字串賦給str1
cout<<str1;
return 0;
}
//結果輸出: Give you some color,see see!
// Give you some color,see see!
2.字串複製函式strcpy(string copy縮寫),函式原型strcpy(char[ ], const char[ ])
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
char str1[30]="Give you some color," ;
char str2[]="see see!";
//cout<<strcat(str1,str2);
cout<<strcpy(str1,str2);//將str2拷貝給str1
cout<<str1;
return 0;
}
//結果輸出: see see!
// see see!
3.字串比較函式strcmp(string compare縮寫),函式原型為strcmp(const char [ ], const char[ ])
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
char str1[30]="Give you some color,";
char str2[]="see see!";
//cout<<strcat(str1,str2);
//cout<<strcpy(str1,str2);
cout<<strcmp(str1, str2);
return 0;
}
//結果輸出: -1
解釋一下,str1與str2比較時,是從元素首位置進行依次比較的,先str1[0]與str2[0]比較,如果相等,則往下對應比較第二個元素,以此類推。如上面的例子,str1[0]=’G’, str2[0]=’s’,由於它們在ASCII碼中,G=71, s=115。故str1 < str2, 輸出為 -1。
輸出值判斷:
1.如果字串str1與字串str2相等,函式值為0;
2.如果字串str1大於字串str2, 函式值為1;
3.如果字串str1小於字串str2 ,函式值為-1;
4.字串長度函式strlen(string length縮寫),函式原型為strlen(const char[ ])
#include <iostream>
#include <cstring>
using namespace std;
int main()
{
char str1[30]="Give you some color,";
char str2[]="see see!";
//cout<<strcat(str1,str2);
//cout<<strcpy(str1,str2);
//cout<<strcmp(str1, str2);
cout<<strlen(str1)<<" "<<strlen(str2)<<endl;
return 0;
}
//結果輸出: 20 8
注意:這四個函式中的引數都是字元陣列,不要將型別為string放進去,否則會報錯。當然你也可以將字串轉換為字元陣列,如下。
string str3="Shut up!";
char str4[30];
cout<<strcpy(str4, str3.c_str());//str3.c_str(),將字串型別轉換為字元陣列
5.獲取string型別字串長度方法:使用length()
//字串已初始化
string str5="There is a cat.";
cout<<str5.length(); //輸出結果為15,包括空格
//從鍵盤輸入字串
string str6;
cin>>str6;
cout<<str6.length();//輸入的字串中包含空格,則輸出第一個空格前的長度,不能獲取這個字串的長度
6.獲取帶有空格的字串長度方法:使用getline()
string str7;
int len;
getline(cin, str7);//只限單行獲取從鍵盤輸入的字串,並將字串賦給str7,遇"\n"(換行),則結束。
len = str7.length();//長度包括空格
cout<<len<<endl;
使用getline()需要注意的地方:
int n;
cin>>n; //比如輸入了一個6
int len;
string str7;
getline(cin, str7);
len = str7.length();
cout<<len<<endl; //執行結果為0
//原因分析:由於我們先從鍵盤輸入了一個6,並按了換行"\n",此時快取區先後儲存了我們輸入的值6以及一個換行符"\n"。然而getline()遇到"\n"就結束讀取,所以值為0。要想發揮getline()作用,只要在cin>>n;後加上getchar(),作用是將"\n"從快取區取出來。
7.獲取陣列長度。
使用模板,支援求各種型別的陣列元素個數。
#include <iostream>
#include <cstring>
using namespace std;
template <typename T>
int getCount(T& x)
{
return sizeof(x) / sizeof(x[0]);
}
int main()
{
//未定義陣列長度
int a[]={0,1,2,3,4,5,6};
double b[]={1.2,0.6,0.7};
cout<<getCount(a)<<endl;//結果為7
cout<<getCount(b)<<endl;//結果為3
//定義了陣列長度
int c[100]={1,2,3,4,5,6};
cout<<getCount(c)<<endl;//結果為100
return 0;
}
可能你會問,能不能在鍵盤輸入一個數組,並計算該陣列元素個數是多少,目前我還沒有找到直接的方法,如果你找到的話,歡迎給我留言。但我們可以考慮用字串的形式,如上面所提到的那樣。
關於一些小細節與方法:
(1)可以直接輸出字串中的單個字元以及替換其中的字元:
string str8="Hello,my world.";
cout<<str8[0]<<endl;//輸出: H
str8[1]='u';//將'e'替換成'u'
cout<<str8[1]<<endl;//輸出: u
cout<<str8<<endl;//輸出: Hullo,my world.
(2)字元陣列,可以根據陣列名直接輸入字元,相當於字串:
char ch[10];
cin>>ch;//輸入 "hello"
cout<<ch<<endl;//輸出 "hello"
//注意,如果是用這種方式初始化字元陣列的話
char a[5]="abcde";//編譯器報錯 [Error] initializer-string for array of chars is too long [-fpermissive] ,字串長度大於陣列長度,因為字元陣列的末元素是存放"\0"結束符的(結束讀取)。應改為char a[6]="abcde";
cout<<a;
for(int i=0; i<=5; i++)
cout<<a[i];
char b[5]={'a','b','c','d','e'};
cout<<b<<endl;//輸出 abcde鈺,第六個元素為亂碼。如果想正常輸出的話,應改為char b[6]={'a','b','c','d','e'};
cout<<b[4]<<endl;//輸出e
for(int i=0; i<5; i++)
cout<<b[i];//輸出abcde
(3)順便再介紹個sprintf()函式,標頭檔案為< stdio.h >,它與printf()函式十分相像。但它的功能很強大,比如將整型數轉換為字串。
#include <iostream>
#include <stdio.h>
#include <cstring>
#include <algorithm> //排序,sort()函式,預設從小到大排序
using namespace std;
int main()
{
int sum=1996;
char s1[6];
sprintf(s1,"%d",sum);//將整型的sum轉換為字串s1
sort(s1,s1+4);//並將s1進行排序
cout<<s1; //結果為1699
return 0;
}
如果你想更詳細瞭解sprintf()函式的話,請點選檢視。
你可以看下藍橋杯這道題——神奇算式,這位大神就用到這個函式。
上述介紹的,都是我在刷題時,在陣列,字串等處理方面所遇到的問題,覺得有必要整理一下,既方便後者學習也助於今後的回顧,有不足之處歡迎指出。