三九宝宝网宝宝教育写作范文

单词统计任意输入一段英文根据英文中各单词出现频率的高低输

02月22日 编辑 39baobao.com

[java输入字符串统计字母单词数字句子个数]1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 importjava.util.*; classTest{ publicstaticvoidmain(String[] args){ Scanner s=newScanner(System.in); String str=" "+s.nex...+阅读

c++源程序: #include #include #include #include using namespace std; class Words //单词类 { public: Words(string str){ count=1; word=str; next=NULL;} int count; //出现的次数 string word; Words *next; }; class WordList { public: void AddWord(string word); //添加单词 bool WordExist(string word); //判断单词是否存在 void WordPrint(); //打印出现次数最多的前五个单词 int getLength(){ return length;}//单词链表长度 int getTotal(){ return total;} //输入单词总数 WordList(); ~WordList(); private: Words *first; Words *last; int length; int total; }; WordList::WordList() { first=new Words(" "); first->next=NULL; last=first; length=0; total=0; } WordList::~WordList() { Words *p=first; Words *q; while(p!=NULL) { q=p; p=p->next; delete q; } } void WordList::AddWord(string word) { if( !WordExist(word) )//单词不存在 { Words *node=new Words(word); last->next=node; last=node; last->next=NULL; length++; } } bool WordList::WordExist(string word) { Words *p=first->next; total++; while(p!=NULL) { if( p->word == word ) { p->count++; return true; } p=p->next; } return false; } void WordList::WordPrint() { int n=5; if( lengthword; int max=p->count; Words* pmax=p; while(p!=NULL) { if( p->count >max ) { max = p->count ; str=p->word; pmax=p; } p=p->next; } pmax->count=0; cout

以下为关联文档:

输入一行字符统计该行字符包含英文字母空格数字和其他字符的#include<stdio.h> void main() { int word,digital,other,space; word=digital=other=space=0; char string[20],*p; printf("Input:"); gets(string);// //*string=0; p=str...

输入一行字符分别统计其中的英文大写字母小写字母数字字符和#include<stdio.h> main() { int i = 0,di=0,ll=0,ul=0,el=0; char a[100]; printf("please input string:\n"); gets(a); while(a[i]) { if(a[i]>='a' & a[i]<='z') ll++; el...

C程序:循环输入字符分别统计出每次循环英文字母空格数字#include <stdio.h> void count(char c); int letters=0,space=0,digit=0,others=0; /*定义为全局变量*/ main() {char c; printf("you can input your sentences.\n"); /*放在F...

C程序:输入若干字符分别统计数字字符的个数英文字母的个数#include "stdio.h" void main() { char s; int i=0,j=0,k=0,m=0,da=0,xiao=0; printf("please input the string\n"); while((s=getchar())!='\n') /*循环从键盘读入字符直到一...

单词体育的英文怎么读体育的英文:sports 词汇解析 sports 英 [spɔːts] 美 [spɔrts] n. 运动;运动会;突变;娱乐 adj. 运动的;适用于运动的 v. 娱乐;戏弄 例:You like sports while I like reading. 你...

d开头英文单词带d开头的单词有哪些dad 爸爸 date 日期 daily 日常的 day 白天 damage 破坏 days 时代 dance 跳舞 damn 该死 dawn 黎明 danger 危险 dangerous 危险的 data 数据 DE desk 书桌 delete 删除 de...

管理员翻译成英文单词要看他管理的是什么了,administrator一般用于行政管理和电脑网络,权限的意味很浓,最广泛应用于网络,其次是政府,再次是大型公司。 和他有同样功能的是manager,可以用于行政管理及...

输入N个由 0 9组成的数字字符串统计出现频率最高的数字Dim num(10) As Integer, i As Integer, s As String, max(10) As Integer, k As Integer For i = 0 To Len(Text1.Text) - 1 num(Val(Mid(Text1.Text, i + 1, 1))) = num(V...

英文单词游戏高分Shabbat n.(犹太教)安息日(亦作Shabbos,Shabbas)shallot n.葱sherbet n. 冰冻果子露shutout 关厂, 关店, 停业, 被关在外面的人, 使对方无法得分的比赛cenote n.沼穴,洞状陷穴(尤指墨...

推荐阅读
图文推荐