在C语言中,我们可以使用各种方法来统计字符串中的字符数量和对字符进行排序
#include<stdio.h>
#include<string.h>
#include <ctype.h>
void count_chars(const char *str) {
int count[256] = {0}; // 初始化一个大小为256的整型数组,用于存储每个字符的计数
for (int i = 0; str[i]; i++) {
count[(unsigned char)str[i]]++; // 逐个字符递增计数器
}
printf("字符统计:\n");
for (int i = 0; i < 256; i++) {
if (count[i] > 0) {
printf("%c: %d\n", i, count[i]);
}
}
}
void sort_chars(char *str) {
int length = strlen(str);
int count[256] = {0};
for (int i = 0; i< length; i++) {
count[(unsigned char)str[i]]++;
}
int index = 0;
for (int i = 0; i < 256; i++) {
while (count[i] > 0) {
str[index++] = i;
count[i]--;
}
}
}
int main() {
char str[] = "Hello, World!";
printf("原始字符串: %s\n", str);
count_chars(str);
sort_chars(str);
printf("排序后的字符串: %s\n", str);
return 0;
}
这个程序首先定义了两个函数:count_chars
和 sort_chars
。count_chars
函数接收一个字符串参数,并统计其中每个字符的出现次数。sort_chars
函数接收一个字符串参数,并按照字符的ASCII值对字符串进行排序。
在 main
函数中,我们创建了一个字符串 “Hello, World!”,然后分别调用这两个函数来统计字符数量和对字符串进行排序。注意,这里我们使用了 unsigned char
类型来确保字符的正确处理,因为字符可能是负数(例如,扩展ASCII字符)。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。