我正在尝试从文本文件中读取字符串;并提供有关使用方案的每个单词出现的“统计”,并提供最常用的单词。
经验:
string = "one two, tree one two"
并得到:
one: 2
two: 2
tree: 1
我可以通过使用一个简单的函数计数器来计算每个单词并将结果显示在屏幕上,但是我找不到一种方法来使用这个结果来显示例如在一个巨大的输入文本中使用最多的 5 个单词 - 一本书例如-。
更新 :
这是我的问题的解决方案,但输入应该排序,像这样(aaaabbbbbmmm)
(define frequency (lambda(ls)
(if (null? ls) '() (freq_aux (car ls) 1 (cdr ls) '() ))))
(define freq_aux (lambda(l n ls tmp ) ( if(null? ls)
(cons (cons n l) tmp) (if(equal? l (car ls))
(freq_aux l (+ 1 n) (cdr ls) tmp)
(freq_aux (car ls) 1 (cdr ls) (cons (cons n l) tmp))))))