C语言统计文本字母出现次数按从大到小顺序排,急用高分
来源:学生作业帮 编辑:大师作文网作业帮 分类:综合作业 时间:2024/11/12 10:51:13
C语言统计文本字母出现次数按从大到小顺序排,急用高分
下面是做好可以导入文本,但是不能大小写归一按顺序排列
http://zhidao.baidu.com/link?url=22k-9jv5M4U5RPe5toDUbxd1iYfSSfp0QjPxKcPDo0lc3ZprlpYOOJ61RWigqQJ1GISp3NwHHT2U2wVWLagkTK
这是可以按顺序排的,但是需要手动输入,不能直接导入txt文本内容
http://zhidao.baidu.com/question/282930834.html?qbl=relate_question_2&word=%D7%D6%C4%B8%C6%B5%C2%CA%CD%B3%BC%C6%B9%A4%BE%DF
http://zhidao.baidu.com/link?url=Arq2HqxyR6Llya7DnSoZ4zX9EUjCWB3NWmkgIsNzE6Pv5tU7apabrLqGRPfYsv4MIONEoE1w30vC5_RrPPPGxa
下面是做好可以导入文本,但是不能大小写归一按顺序排列
http://zhidao.baidu.com/link?url=22k-9jv5M4U5RPe5toDUbxd1iYfSSfp0QjPxKcPDo0lc3ZprlpYOOJ61RWigqQJ1GISp3NwHHT2U2wVWLagkTK
这是可以按顺序排的,但是需要手动输入,不能直接导入txt文本内容
http://zhidao.baidu.com/question/282930834.html?qbl=relate_question_2&word=%D7%D6%C4%B8%C6%B5%C2%CA%CD%B3%BC%C6%B9%A4%BE%DF
http://zhidao.baidu.com/link?url=Arq2HqxyR6Llya7DnSoZ4zX9EUjCWB3NWmkgIsNzE6Pv5tU7apabrLqGRPfYsv4MIONEoE1w30vC5_RrPPPGxa
#include <stdio.h>
#include <ctype.h>
#include <string.h>
int main() {
int counts[26], i;
char c;
FILE* fp = fopen("input.txt", "r");
FILE* op = fopen("output.txt", "w");
memset(counts, 0, sizeof(counts));
while (fscanf(fp, "%c", &c) == 1) {
if (isalpha(c)) {
counts[tolower(c) - 'a']++;
}
}
for (i = 0; i < 26; i++) {
printf("%c: %d\n", i + 'a', counts[i]);
fprintf(op, "%c: %d\n", i + 'a', counts[i]);
}
fclose(fp);
fclose(op);
}
再问: 没有导入文本内容
再答: 你需要把input.txt换成你想导入的文件的名称
把output.txt换成你想导出结果的文件的名称
再问: 我改了一下文件地址,数据出来了但是大小排序没有出来
再答: 你想出现次数多的排前面还是排后面,如果次数相同是接近a的排前面还是接近z的排前面?#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <stdlib.h>
typedef struct {
\x09char c;
\x09int times;
}stat;
int cmp(const void* a, const void* b) {
\x09stat* sa = (stat*)a;
\x09stat* sb = (stat*)b;
\x09if (sa->times != sb->times) {
\x09\x09return sb->times - sa->times;
\x09}
\x09else {
\x09\x09return sa->c - sb->c;
\x09}
}
int main() {
\x09int i;
\x09char c;
\x09stat counts[26];
\x09FILE* fp = fopen("input.txt", "r");
\x09FILE* op = fopen("output.txt", "w");
\x09for (i = 0; i < 26; i++) {
\x09\x09counts[i].c = 'a' + i;
\x09\x09counts[i].times = 0;
\x09}
\x09while (fscanf(fp, "%c", &c) == 1) {
\x09\x09if (isalpha(c)) {
\x09\x09\x09counts[tolower(c) - 'a'].times++;
\x09\x09}
\x09}
\x09qsort(counts, 26, sizeof(stat), cmp);
\x09for (i = 0; i < 26; i++) {
\x09\x09printf("%c: %d\n", counts[i].c, counts[i].times);
\x09\x09fprintf(op, "%c: %d\n", counts[i].c, counts[i].times);
\x09}
\x09fclose(fp);
\x09fclose(op);
}
#include <ctype.h>
#include <string.h>
int main() {
int counts[26], i;
char c;
FILE* fp = fopen("input.txt", "r");
FILE* op = fopen("output.txt", "w");
memset(counts, 0, sizeof(counts));
while (fscanf(fp, "%c", &c) == 1) {
if (isalpha(c)) {
counts[tolower(c) - 'a']++;
}
}
for (i = 0; i < 26; i++) {
printf("%c: %d\n", i + 'a', counts[i]);
fprintf(op, "%c: %d\n", i + 'a', counts[i]);
}
fclose(fp);
fclose(op);
}
再问: 没有导入文本内容
再答: 你需要把input.txt换成你想导入的文件的名称
把output.txt换成你想导出结果的文件的名称
再问: 我改了一下文件地址,数据出来了但是大小排序没有出来
再答: 你想出现次数多的排前面还是排后面,如果次数相同是接近a的排前面还是接近z的排前面?#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <stdlib.h>
typedef struct {
\x09char c;
\x09int times;
}stat;
int cmp(const void* a, const void* b) {
\x09stat* sa = (stat*)a;
\x09stat* sb = (stat*)b;
\x09if (sa->times != sb->times) {
\x09\x09return sb->times - sa->times;
\x09}
\x09else {
\x09\x09return sa->c - sb->c;
\x09}
}
int main() {
\x09int i;
\x09char c;
\x09stat counts[26];
\x09FILE* fp = fopen("input.txt", "r");
\x09FILE* op = fopen("output.txt", "w");
\x09for (i = 0; i < 26; i++) {
\x09\x09counts[i].c = 'a' + i;
\x09\x09counts[i].times = 0;
\x09}
\x09while (fscanf(fp, "%c", &c) == 1) {
\x09\x09if (isalpha(c)) {
\x09\x09\x09counts[tolower(c) - 'a'].times++;
\x09\x09}
\x09}
\x09qsort(counts, 26, sizeof(stat), cmp);
\x09for (i = 0; i < 26; i++) {
\x09\x09printf("%c: %d\n", counts[i].c, counts[i].times);
\x09\x09fprintf(op, "%c: %d\n", counts[i].c, counts[i].times);
\x09}
\x09fclose(fp);
\x09fclose(op);
}
C语言统计文本字母出现次数按从大到小顺序排,急用高分
C语言 编写程序,从键盘输入若干个英文字母,并统计各字母出现的次数
C语言题目,从键盘输入一行文本,统计其中每个英文字母出现的频率
C语言编程:输入一串英文字母,统计每个字母(不区分大小写)出现的次数
用C语言编一个程序,模拟投骰子实验10000次,统计各点出现的概率,和1、2、3连续按顺序出现的次数
用C语言编写一个程序,统计一个字符串中 各种 小写字母(26个小写字母)出现次数,
C语言统计超大数字的出现次数
编程 C语言 随机产生十个数 并统计其中各个数字出现的次数
求一份C语言课程设计 统计文本文件中英文单词的出现次数
C语言 统计文本文件a.txt中小写英文字母的出现次数
C语言编程统计某数出现的次数,并输出它们所在位置.
excel 按时间顺序统计出现的次数,并编号