首页 > 代码库 > 《Cracking the Coding Interview》——第17章:普通题——题目9
《Cracking the Coding Interview》——第17章:普通题——题目9
2014-04-28 23:52
题目:设计算法,找出一本书中某个单词的出现频率。
解法:数就行了。
代码:
1 // 17.9 Given a book, find out the occurrences of any given words in it. 2 // Answer: 3 // 1. process the book as a text file. 4 // 2. find all words, definition of a word must be clearly asserted. 5 // 3. use map or hash table to record the occurrences of words. 6 // 4. query the statistics for an answer. 7 int main() 8 { 9 return 0; 10 }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。