我是靠谱客的博主 高贵飞机,最近开发中收集的这篇文章主要介绍C++统计文章中单词出现的个数和每个字母出现的次数并按字母顺序排序C++统计文章中单词出现的个数和每个字母出现的次数并按字母顺序排序,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
C++统计文章中单词出现的个数和每个字母出现的次数并按字母顺序排序
文章目录
- C++统计文章中单词出现的个数和每个字母出现的次数并按字母顺序排序
- 在主函数中进行循环写法
- 封装成函数
在主函数中进行循环写法
利用array数组和数字与字符的转换进行编程,如下:
效果如下:
#include <iostream>
#include<vector>
#include<string>
#include<fstream>
#include<cstdlib>
using namespace std;
int main() {
ifstream f;
f.open("C:\Users\Administrator\source\repos\test2.txt");
if (f.fail()) {
cout << "input file failed.n";
exit(1);
}
string s;
getline(f, s);
int num[26];
int word_count = 0;
for (int i = 0; i < 26; i++) {
num[i] = 0;
}
for (int i = 0; i < s.length(); i++) {
cout << s[i];
if (isalpha(s[i])) {
s[i] = tolower(s[i]);//大写字母全变为小写字母
int num_count = int(s[i]) - 97;
num[num_count] = num[num_count] + 1;//每个字母出现啊的次数计数
}
else if (s[i] == ' ') {
word_count=word_count+1;//每个单词出现的次数计数
}
else {
continue;
}
}
word_count++;//因为是计算空格,所以最后要加1
cout <<'n' <<endl;
cout << word_count << 't' << "words" << endl;
for (int j = 0; j < 26; j++) {
if (num[j] > 0) {
char word_now;
word_now= (char)(j + int('a'));//依据位置,转为为字母序
cout << num[j] << 't' << word_now << endl;
}
}
}
封装成函数
计算单词个数,统计词频并输出
void word_count(string s) {
int num[26];
int word_count = 0;
for (int i = 0; i < 26; i++) {
num[i] = 0;
}
for (int i = 0; i < s.length(); i++) {
cout << s[i];
if (isalpha(s[i])) {
s[i] = tolower(s[i]);//大写字母全变为小写字母
int num_count = int(s[i]) - 97;
num[num_count] = num[num_count] + 1;//每个字母出现啊的次数计数
}
else if (s[i] == ' ') {
word_count = word_count + 1;//每个单词出现的次数计数
}
else {
continue;
}
}
word_count++;//因为是计算空格,所以最后要加1
cout << 'n' << endl;
cout << word_count << 't' << "words" << endl;
for (int j = 0; j < 26; j++) {
if (num[j] > 0) {
char word_now;
word_now = (char)(j + int('a'));//依据位置,转为为字母序
cout << num[j] << 't' << word_now << endl;
}
}
}
主函数更改文件
int main() {
ifstream f;
f.open("C:\Users\Administrator\source\repos\English.txt");
if (f.fail()) {
cout << "input file failed.n";
exit(1);
}
string s;
getline(f, s);
word_count(s);
最后
以上就是高贵飞机为你收集整理的C++统计文章中单词出现的个数和每个字母出现的次数并按字母顺序排序C++统计文章中单词出现的个数和每个字母出现的次数并按字母顺序排序的全部内容,希望文章能够帮你解决C++统计文章中单词出现的个数和每个字母出现的次数并按字母顺序排序C++统计文章中单词出现的个数和每个字母出现的次数并按字母顺序排序所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复