C#中使用Dictionary<TKey,TValue>,C++使用std::map<TK,TV>。map的内部实现是红黑树,Dictionary的实现是哈希表。DotNet中也有用树实现的字典类结构,叫SortedDictionary,似乎用得不多,效率也没有哈希表高,不过可以保持插入的数据是有序的。下面的对比是通过字符串来检索整数,为了写起来方便,C++中字符串直接用了LPCTSTR,并且typedefstd::map<LPCTSTR,int> map_type;
操作 | C++(STL) | C#(.net) | 说明 |
包含 | #include <map> | using System.Collections.Generic; | |
声明 | map_type map; | Dictionary<string, int> map = new Dictionary<string, int>(); | |
插入 | map[_T("first")]=5; | map.Add("first", 5); | |
删除 | map.erase(iter); //iter有效且不等于map.end() | map.Remove("first"); | |
查询 | int val=map[_T("second")]; //没有则构造新的 | int data = map["second"]; //不存在则异常 | 注意C++中下标检索时如果不存在这个元素也不产生错误 |
遍历 | for (iter=map.begin();iter!=map.end();++iter) | foreach (KeyValuePair<string, int> pair in map) //不能进行删除操作 } | |
大小 | map.size(); | map.Count; |