[問題] Dictinoary<string, Dictionary<string,c

作者: ioptt (ioptt)   2016-03-31 15:16:46
各位前輩, 想請問
class1(string name, string type, string comt)
Dictionary<string(module), Dictionary<string(name), class1>>
的問題
我需要從檔案中讀取資料, 想存在如上的資料結構裡, 以方便做search
由於檔案的內容長度不一定, 所以想利用dictionary的特性.
當我抓到第一組資料時, ex:
module1: name0, type0, comt0
name1, type1, comt1
name2, type2, comt2
....
nameN, typeN, comtN
module2: name0, type0, comt0
name1, type1, comt1
....
nameM, typeM, comtM
.......
moduleK: name0, type0, comt0
name1, type1, comt1
....
nameL, typeL, comtL
由於幾個module是不一定, 每個module裡有幾組name/type/comt也不一定.
我想要做成一個方便資料搜索的dictionary
當我想搜尋module2時, 會去找module2裡的dictionary,
然後去找nameX, 然後資料會找到nameX, typeX, comtX
我現在碰到的問題是:
由於不同模組下的name, 有可能會相同, 但type和comt可能會不同,
且我不知道會有幾個module, 所以我要怎麼動態去產生 不同module下的dictionary.
請教各位前輩高手了. 謝謝
作者: Litfal (Litfal)   2016-03-31 20:18:00
做一個class放module, name, type, comtkey用module和name(複寫該class的Equals和GetHashCode)其實你這兩層的Dictionary也沒什麼問題,哪裡不明白呢?
作者: gundan (彈彈的哀傷)   2016-04-06 14:52:00
是name會重覆的問題吧?dictionary不能有相同的key不想生新class 就改成IEnumerable<KeyValuePair<>>

Links booklink

Contact Us: admin [ a t ] ucptt.com