搜索资源列表
统计单词个数
- 利用哈希表统计文本文件中单词的个数,哈希函数的实现为取模法,利用链地址法解决冲突。-use Hash Table Statistics text file number of words, the realization of Hash Functions for Remainder law, the use of chain law addresses solution to the conflict.
jeromel
- 利用Hash技术统计单词的频度。扫描一个C源程序,用Hash表存储该程序中出现的关键字,并统计该程序中的关键字出现的频度。用线性探测法解决Hash冲突。设Hash函数为:Hash(Key)=[(Key的首字母序号)*100+(Key的尾字母序号)] Mod 41 -use statistical word frequency. Scanning a C source files, using the hash table storage procedures of the keyword s
word-counting
- 统计文章中每一个单词出现次数的程序,是C语言中字符串处理的经典教学例子-Article statistics the number of occurrences of each word in the process, the C language teaching in a classic example of string handling
wordproblem
- 输入一篇英文,程序将对里面每个单词的频率进行统计,从文件输入,而不是从键盘输入.-Enter an English, the program will be inside each word frequency statistics, from the file input, rather than from the keyboard input.
Frequencydistribution
- /*功能:从纯英文文本中统计出现频率最高的前十个单词(采用双向列表) */- Frequency distribution of the vowels and consonants used in the sample.
tj
- 可以统计文件中出现的单词频率,提供了可视化界面,请给出改进意见!-Statistics files can appear in word frequency, providing a visual interface, please give improvements!
char_manipulation
- 包含几个字符操作的经典程序:数字字符转换成数值、统计单词出现次数、选择法进行字符串排序、在串中查找一个字串出现的次数、字符串的选择法排序、字符串中的大写字母改小写字母-Contains several classic characters operating procedures: digital characters into numerical, statistical word occurrences, select the sort method for strings, a strin
Trie
- Trie,又称单词查找树、前缀树,是一种哈希树的变种。应用于字符串的统计与排序,经常被搜索引擎系统用于文本词频统计-Trie, also known as the word search tree, the prefix tree, is a variant of the hash tree. Applied statistics and sorting of strings, often by the search engine system for text word frequency s
5091209073_2
- 编写一个程序要求用户输入一段文字,然后按照每个单词的开头字母对这段文字分类统计单词的数量并排序输出。(sjtu 二专 作业2)-Write a program that requires the user to input a paragraph of text, and then follow the first letter of each word on the statistics of this text and sort out the number of words. (Sjtu
words_cout
- 统计文档中单词出现的频率并按照字典顺序进行排序-Statistics document the frequency of words and sort lexicographically
text
- 单词统计程序,使之能处理任意长度的单词。 如下功能:1.从数据文件读取字符文本 2.对单词按照频度排序(按大到小)输出。-Word statistical procedures, so that it can handle any length of words. The following functions: 1. Read characters from a text data file 2 in accordance with the frequency of word order
Text
- 程序名称:单词统计 程序功能:统计英文单词出现次数,并顺序输出-Program Name: Word statistics Program features: statistical occurrences of English words, and the output sequence
dictionarytree
- 又称单词查找树,Trie树,是一种树形结构,是一种哈希树的变种。典型应用是用于统计,排序和保存大量的字符串(但不仅限于字符串),所以经常被搜索引擎系统用于文本词频统计-Also known as word search tree, the trie is a tree structure, which is a variant of the hash tree. Typical applications are used for statistical, sort and save a lot
mian
- 又称单词查找树,Trie树,是一种树形结构,是一种哈希树的变种。典型应用是用于统计,排序和保存大量的字符串(但不仅限于字符串),所以经常被搜索引擎系统用于文本词频统计。它的优点是:利用字符串的公共前缀来节约存储空间,最大限度地减少无谓的字符串比较,查询效率比哈希表高。 -Text of obtaining statistics its advantage is: use the public to save string prefix storage space, the maximum r
chengxu
- 从一文本中读取单词,统计其出现的频率,并按频率大小输出到另一文本中。这里的单词是分二种,一种是ASCII码大于0x20小于0X80字符,第 二种是小于0x20以及大于0x80的字符。这里我用的是哈希表,这样能很快查找读取的单词是否已经存在。排序我用的是二个循环,按理来说可以改进-It is very good program!
count_char
- 编写程序统计一个字符串"C++ is beginer s language"中单词的个数-Programming statistics and a string C++ is beginer' s language " in the word number
OK
- 单词学习软件单词(中英文)录入、修改、删除管理、提供多种(至少三种,例如,给出英文选中文,给出中文写英文等)单词学习方法,对出错单词能够进行查询、统计、排序。-Word learning software word (in English) entry, modify, delete, management, and provide a variety of (at least three, for example, given the English selected Chinese are
Count_words
- 使用 树形结构 编写的应用于单词字符数量统计代码-Use tree structure to write used in word character quantity statistics code
calculatewords
- 给出了直接导入一段英文txt文档,并统计其中各个单词出现次数的代码,并给出详细注释。-java environment program gives statistical methods uppercase and lowercase letters, suitable for beginners to master
统计单词个数C语言算法
- 输入一行字符,计算该行字符中包含多少个单词,单词之间用空格分隔开。