寫了一個c++程序判斷每個字母在string中出現的次數 但為什麼無論輸入什麼,全部字母都顯示出現0次?
#include
#include
using namespace std;
int count(const char * const s)
{
int count = new int[26];
for (int i = 0; i < 26; i++)
count[i] = 0;
for (int j = 0; j < strlen(s); j++)
{
count[s[j] - 'a']++;
}
return count;
}
int main()
{
char str[100]; //100 is big enough to contain the string
cin >> str[100];
int* p = count(str);
for (int a = 'a'; a <= 'z'; a++)
{
cout << (char)(a) << ": " << p[a - 'a'] << " times" << endl;
}
return 0;
}
cin >> str[100]
1. 只是接受一個輸入的字符,因為str[100]是char,而str才是指向char array的指針,cin對這兩種類型處理是不一樣的(即所謂重載);
2. str[100]越界了,str[99]是最大的可訪問區域;
3. count是new出來的,返回後沒有delete。
友情提醒:好好看書。