时间:2021-05-20
1、SortedDictionary泛型类
SortedDictionary 泛型类是检索运算复杂度为 O(logn) 的二叉搜索树,其中n是字典中的元素数。就这一点而言,它与SortedList泛型类相似。这两个类具有相似的对象模型,并且都具有 O(logn) 的检索运算复杂度。这两个类的区别在于内存的使用以及插入和移除元素的速度:
每个键/值对都可以作为KeyValuePair结构进行检索,或作为DictionaryEntry通过非泛型IDictionary接口进行检索。
只要键用作SortedDictionary中的键,它们就必须是不可变的。SortedDictionary中的每个键必须是唯一的。键不能为空引用(在 Visual Basic 中为 Nothing),但是如果值类型TValue为引用类型,该值则可以为空。
SortedDictionary需要比较器实现来执行键比较。可以使用一个接受comparer参数的构造函数来指定IComparer泛型接口的实现;如果不指定实现,则使用默认的泛型比较器Comparer.Default。如果类型TKey实现System.IComparable泛型接口,则默认比较器使用该实现。
C# 语言的foreach语句,需要集合中每个元素的类型。由于SortedDictionary的每个元素都是一个键/值对,因此元素类型既不是键的类型,也不是值的类型。而是KeyValuePair类型
2、要使用Dictionary集合,需要导入C#泛型命名空间
System.Collections.Generic(程序集:mscorlib)
3、Dictionary的描述
4、Dictionary常用用法:以 key 的类型为 int , value的类型为string 为例
1.创建及初始化
Dictionary<int,string>myDictionary=newDictionary<int,string>();2.添加元素
myDictionary.Add(1,"C#");3.通过Key查找元素
if(myDictionary.ContainsKey(1)){Console.WriteLine("Key:{0},Value:{1}","1", myDictionary[1]);}4.通过KeyValuePair遍历元素
foreach(KeyValuePair<int,string>kvp in myDictionary)...{Console.WriteLine("Key = {0}, Value = {1}",kvp.Key, kvp.Value);}5.仅遍历键 Keys 属性
Dictionary<int,string>.KeyCollection keyCol=myDictionary.Keys;foreach(intkeyinkeyCol)...{Console.WriteLine("Key = {0}", key);}6.仅遍历值 Valus属性
Dictionary<int,string>.ValueCollection valueCol=myDictionary.Values;foreach(stringvalueinvalueCol)...{Console.WriteLine("Value = {0}", value);}7.通过Remove方法移除指定的键值
myDictionary.Remove(1);if(myDictionary.ContainsKey(1))...{ Console.WriteLine("Key:{0},Value:{1}","1", myDictionary[1]);}else{Console.WriteLine("不存在 Key : 1"); }5、其它常见属性和方法的说明:
Comparer: 获取用于确定字典中的键是否相等的 IEqualityComparer。
Count: 获取包含在 Dictionary中的键/值对的数目。
Item: 获取或设置与指定的键相关联的值。
Keys: 获取包含 Dictionary中的键的集合。
Values: 获取包含 Dictionary中的值的集合。
Add: 将指定的键和值添加到字典中。
Clear: 从 Dictionary中移除所有的键和值。
ContainsKey: 确定 Dictionary是否包含指定的键。
ContainsValue: 确定 Dictionary是否包含特定值。
GetEnumerator: 返回循环访问 Dictionary的枚举数。
GetType:获取当前实例的 Type。 (从 Object 继承。)
Remove:从 Dictionary中移除所指定的键的值。
ToString:返回表示当前 Object的 String。 (从 Object 继承。)
TryGetValue: 获取与指定的键相关联的值。
使用for循环遍历键值
Dictionary<string, int> Dict = new Dictionary<string, int>(); Dict .Add( "a", 1 ); Dict .Add( "b", 2 ); Dict .Add( "c", 3 ); Dict .Add( "d", 4 ); Dict .Add( "e", 5 ); Dict .Add( "f", 6 ); for(int i = 0 ; i < DicTest.Count ; i++) { Debug.Log(DicTest.ToList()[i].Key + ":" + DicTest.ToList()[i].Value); }总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
要使用Dictionary集合,需要导入C#泛型命名空间System.Collections.Generic(程序集:mscorlib)Dictionary的描
前言以键值对Dictionary形式存值,和哈希表很像也是一种无序的结构。要使用Dictionary,需要先导入C#泛型命名空间System.Collectio
1、要使用Dictionary集合,需要导入C#泛型命名空间 System.Collections.Generic(程序集:mscorlib)2、描述 1)
本文实例为大家分享了C#如何遍历Dictionary的具体代码,供大家参考,具体内容如下usingSystem;usingSystem.Collections.
在C#中,用于存储的结构较多,如:DataTable,DataSet,List,Dictionary,Stack等结构,各种结构采用的存储的方式存在差异,效率也