如何用C programming 來寫一個程式去計算一句句子or a phrase在一篇文章內出現的次數

2007-08-22 11:09 pm
如何用C programming 來寫一個程式去計算一句句子or a phrase在一篇文章內出現的次數Pls show the steps in detail.
10 points will be awarded to the best answerer.

回答 (1)

2007-08-26 9:12 am
✔ 最佳答案



因為文字檔案的容量很難預計,建議用「即時傳譯」的方式,就是讀一段、處理一段。



演算法 Algorithm




把計數器歸零
用fgets()從文字檔讀一段以'\n'為分界的文字
用strstr()來搜尋目標字串
找到就把計數器加一
重複3及4直至全段字串已掃瞄完畢
重複2至5直至全個檔案已掃瞄完畢




程式原碼 Program Source Code






圖片參考:http://i206.photobucket.com/albums/bb265/a048042l/phrscntr01.gif


圖片參考:http://i206.photobucket.com/albums/bb265/a048042l/phrscntr02.gif


圖片參考:http://i206.photobucket.com/albums/bb265/a048042l/phrscntr03.gif


圖片參考:http://i206.photobucket.com/albums/bb265/a048042l/phrscntr04.gif






原碼下載 Download




圖片參考:http://i206.photobucket.com/albums/bb265/a048042l/rightarrow.gif
 phrscntr.c



編譯 Compilation



Microsoft Visual C++ 或 任何相容之編譯器



執行 Execution



phrscntr



顯示「線上協助」(on-line help)



phrscntr myfile.txt -s " is a "



以「大小寫不同」(case-sensitive)方式,數“myfile.txt”檔內的“ is a ”字串出現的次數



phrscntr "c:\My Documents\yourfile.txt" -i the



以「大小寫相同」(case-insensitive)方式,數“c:\My Documents\yourfile.txt”檔內“the”字串出的現次數


參考: 原創


收錄日期: 2021-04-13 13:25:52
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20070822000051KK03067

檢視 Wayback Machine 備份