首页 > TAG信息列表 > maxWord

求一个字符串中最长单词,并将这个单词输出

.写一个函数,输入一行字符,将此字符串中最长的单词输出。         在一个字符串中,单词与单词之间会被其它字符隔开如:‘,’,‘;’,‘!’,如果这个单词在字符串末尾则不会有其它字符隔开。假设不考虑单词的拼写是否正确,只要中间没有其它非字母字符,则认为这是一个单词,c语言代码如下:

JavaScript 如何查找一篇英文文章中出现频率最高的单词?

 直接上代码 function findMostWord(article) { // 合法性判断 if (!article) return; // 参数处理 article = article.trim().toLowerCase(); let wordList = article.match(/[a-z]+/g), visited = [], maxNum = 0, maxWord = "";

单词长度的垂直直方图

  代码如下: #include <stdio.h> #define MAXHIST 20 /* max length of histogram */ #define MAXWORD 11 /* max length of a word */ #define IN 1 /* inside a word */ #define OUT 0 /* outside a word */ int main() { int i, j, c, state, nc; int maxvalu