C# Dictionary和SortedDictionary简介

  1.  

    SortedDictionary 泛型类是检索运算复杂度为 O(log n) 的二叉搜索树,其中 n 是字典中的元素数。就这一点而言,它与 SortedList 泛型类相似。这两个类具有相似的对象模型,并且都具有 O(log n) 的检索运算复杂度。这两个类的区别在于内存的使用以及插入和移除元素的速度:

    • SortedList 使用的内存比 SortedDictionary 少。

    • SortedDictionary 可对未排序的数据执行更快的插入和移除操作:它的时间复杂度为 O(log n),而SortedList 为 O(n)。

    • 如果使用排序数据一次性填充列表,则 SortedList 比 SortedDictionary 快。

    每个键/值对都可以作为 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的描述

    1、从一组键(Key)到一组值(Value)的映射,每一个添加项都是由一个值及其相关连的键组成

    2、任何键都必须是唯一的

    3、键不能为空引用null(VB中的Nothing),若值为引用类型,则可以为空值

    4、Key和Value可以是任何类型(string,int,custom class 等)

     

  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);
     }

 

C#中,标准的`Dictionary<TKey, TValue>`本身是无序的,因为它是基于哈希表实现的,所以无法保证元素的自然顺序。如果你想要对Dictionary的内容进行排序,可以采用以下几种方法: 1. **转换为列表并排序**:首先将Dictionary的内容转换为List,例如`KeyValuePair<TKey, TValue>[] pairs = dictionary.ToArray()`,然后对这个列表进行排序,例如按键值排序`pairs.OrderBy(p => p.Key)` 或者 `p.Value`。排序后,可以根据需要再转换回Dictionary或其他合适的集合。 ```csharp List<KeyValuePair<TKey, TValue>> sortedPairs = dictionary.ToList(); sortedPairs.Sort((x, y) => x.Key.CompareTo(y.Key)); // 按键排序 ``` 2. **自定义比较器**:创建一个实现`IComparer<TPair>`或`Comparison<TPair>`接口的类,其中`TPair`是你键值对类型的别名,然后在排序操作中传入该比较器。 ```csharp public class MyKeySort : IComparer<KeyValuePair<TKey, TValue>> { public int Compare(KeyValuePair<TKey, TValue> x, KeyValuePair<TKey, TValue> y) { return x.Key.CompareTo(y.Key); } } // 使用自定义比较器 dictionary.OrderBy(MyKeySort.Instance); ``` 3. **使用SortedDictionary**:如果你确实需要有序的字典,可以使用`SortedDictionary<TKey, TValue>`,它内部就是按照键的自然顺序(默认升序)排列的。 ```csharp SortedDictionary<TKey, TValue> sortedDict = new SortedDictionary<TKey, TValue>(dictionary); ``` 注意,在以上所有情况中,排序后都不会改变原始的Dictionary结构,而是创建了新的排序后的集合。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

陈言必行

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值