搜索资源列表
统计单词个数
- 利用哈希表统计文本文件中单词的个数,哈希函数的实现为取模法,利用链地址法解决冲突。-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.
countWordTimes
- 对文档中的某一单词进行统计,使用C++在VC环境中开发.-right documentation of a particular word statistics, the use of the VC C development environment.
Self
- 统计一个txt文件中字符的个数和单词的个数 可以指定文本文件中搜索指定字符-a txt document the number of characters and words can specify the number of text files to search for the designated characters
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
kwic
- 简单的txt文本搜索程序。能够从指定的txt文档中搜索特定单词并生成其KWIC。此程序为《统计自然语言处理基础》习题1.6第7题答案。-Simple search program for certain word in a txt file. It can find out specific word in a txt file and generate its KWIC. This program can serve as the answer of practice 1.6.7 of "Fo
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!
yyc
- 本程序可对一篇英文文章的单词进行简单的统计-This program can be an article in English words on a simple statistical
CText
- 完成对任意一个文本文件的字符统计工作。可以统计的信息有中文字符数、英文单词数、行数、字符个数(不计空格)和空格数。 -Calculate Chinese characters, English words the number of rows, number of characters (excluding spaces) and number of spaces in a txt file.
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
tongji
- 输入一列字符串,统计其中有多少个英文单词。-Enter a string, statistics on the number of English words.
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
threal
- 本代码包包括超长整数相加,积分实现,数制转换,单词统计等()
统计单词个数C语言算法
- 输入一行字符,计算该行字符中包含多少个单词,单词之间用空格分隔开。