2016-01-03 76 views
0

我想隨時追蹤文本文件中的字符串(讀入它們)。以編程方式保持跟蹤的最佳方法是什麼?這是3次輸入後的最終結果。字符串趨勢分析(對數據結構的建議)

String|frequency|date-Col1|date-Col2|..date-Col N| 
================================================== 
hello | 2  | 1/1/16 | 3/5/16 | 
motto | 1  | 2/3/16 

我在踢的一些想法:使用python字典,java arrayLists,R?

任何建議,謝謝?

回答

0
from collections import defaultdict 

words_seen = defaultdict(list) 

for word,filedate in get_words(): 
    words_seen[word].append(filedate) 

然後頻率是len(words_seen[word])