牛客网C语言单词识别(统计一个字符串中的单词个数)

题目描述

输入一个英文句子,把句子中的单词(不区分大小写)按出现次数按从多到少把单词和次数在屏幕上输出来,要求能识别英文句号和逗号,即是说单词由空格、句号和逗号隔开。

输入描述:

输入有若干行,总计不超过1000个字符。

输出描述:

输出格式参见样例。

示例1

输入

复制

A blockhouse is a small castle that has four openings through which to shoot.

输出

复制

a:2
blockhouse:1
castle:1
four:1
has:1
is:1
openings:1
shoot:1
small:1
that:1
through:1
to:1
which:1

#include<stdio.h>
#include<string.h>
//A blockhouse is a small castle that has four openings through which to shoot.
int main(){
    void sort(char name[][100], int n);
    int i, count=0, j=0;
    char word[1000][100], str[1000];
    char *p;
    gets(str);//输入字符串
    p=str;// 将输入值得地址赋值给指针
    for(;*p!=0; p++){
        if(*p!=' ' && *p != ',' &&  *p != '.'){//分割单词
            if(*p>='A'&& *p<='Z') //大写变小写
               *p += 32;
            word[count][j++]=*p;
        }
        //遇到空格、逗号、句号
        else{
            if(j!=0){
                word[count][j++]='\0';//单词结束标志
                count++;
                j=0;
            }
        }
    }
    //将分割后的单词排序
    sort(word,count);
    int sum = 1;
    for(i=0;i<count; i++){
        if(strcmp(word[i],word[i+1])== 0)
            sum++;
        else{
            printf("%s:%d\n", word[i],sum);
            sum = 1;
        }
         
    }
    return 0;
}
 
void sort(char name[][100], int n){
    char temp[100];
    int i, j, k;
    for(i=0; i<n-1; i++){
        k=i;
        for(j=i+1; j<n; j++){
            if(strcmp(name[k], name[j]) > 0) k=j;
        }
        if(k != i){
            strcpy(temp, name[i]);
            strcpy(name[i], name[k]);
            strcpy(name[k], temp);
        }
    }
 
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

这个柚子有点甜

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值