文章中字符出现概率统计c++fstream
时间: 2024-02-23 20:59:04 浏览: 60
单服务单队列c++模型
如果你想对一个文件中的字符出现概率进行统计,可以使用C++中的fstream库来读取文件,并且对读取到的字符进行统计。具体实现如下:
```c++
#include <iostream>
#include <fstream>
#include <map>
#include <string>
using namespace std;
int main() {
ifstream fin("filename.txt");
if (!fin.is_open()) {
cout << "Failed to open the file!" << endl;
return 0;
}
map<char, int> mp;
char ch;
while (fin.get(ch)) {
mp[ch]++;
}
fin.close();
for (auto it = mp.begin(); it != mp.end(); it++) {
cout << it->first << ": " << it->second << endl;
}
return 0;
}
```
这段代码中,我们首先使用ifstream库打开文件,然后使用while循环读取文件中的每个字符,并对其进行统计。最后关闭文件,遍历map输出每个字符和其出现的次数。注意,在使用fstream库读取文件时,需要判断文件是否成功打开,否则可能会出现读取失败的情况。
阅读全文