码迷,mamicode.com
首页 > 其他好文 > 详细

《Cracking the Coding Interview》——第17章:普通题——题目9

时间:2014-04-29 16:00:32      阅读:388      评论:0      收藏:0      [点我收藏+]

标签:com   http   class   blog   style   div   img   code   java   javascript   ext   

2014-04-28 23:52

题目:设计算法,找出一本书中某个单词的出现频率。

解法:数就行了。

代码:

bubuko.com,布布扣
 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 }
bubuko.com,布布扣

 

《Cracking the Coding Interview》——第17章:普通题——题目9,布布扣,bubuko.com

《Cracking the Coding Interview》——第17章:普通题——题目9

标签:com   http   class   blog   style   div   img   code   java   javascript   ext   

原文地址:http://www.cnblogs.com/zhuli19901106/p/3698286.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!