📜  C#|如何创建一个SortedList

📅  最后修改于: 2021-05-29 23:48:17             🧑  作者: Mango

SortedList类是根据键对(键,值)对进行排序的集合。可以通过键和索引(从零开始的索引)访问这些对。它位于System.Collections命名空间下。

SortedList的属性:

  • 内部SortedList对象维护两个数组。第一个数组用于存储列表的元素,即键,第二个数组用于存储关联的值。
  • 键不能为null,但值可以为null。
  • 由于SortedList使用了排序,因此与Hashtable相比,它要慢一些。
  • 可以通过重新分配来动态增加SortedList的容量。
  • SortedList中的键不能重复,但值可以重复。
  • 可以使用IComparer根据键对SortedList进行排序(升序或降序)。

下面的程序说明了如何创建SortedList:

范例1:

// C# Program to illustrate how
// to create a SortedList
using System;
using System.Collections;
  
class Geeks {
  
    // Main Method
    public static void Main(String[] args)
    {
  
        // Creating object of SortedList
        // fslist is the SortedList object
        SortedList fslist = new SortedList();
  
        // Count property is used to get the
        // number of key/value pairs in fslist
        // It will give 0 as no pairs are present
        Console.WriteLine(fslist.Count);
    }
}

输出:

0

范例2:

// C# Program to illustrate how
// to create a SortedList
using System;
using System.Collections;
  
class Geeks {
  
    // Main Method
    public static void Main(String[] args)
    {
  
        // Creating object of SortedList
        // fslist is the SortedList object
        SortedList fslist = new SortedList();
  
        // Count property is used to get the
        // number of key/value pairs in fslist
        // It will give 0 as no pairs are present
        Console.WriteLine(fslist.Count);
  
        // Adding key/value pairs in fslist
        fslist.Add("1", "GFG");
        fslist.Add("2", "Geeks");
        fslist.Add("3", "for");
        fslist.Add("4", "Geeks");
  
        // Count property is used to get the
        // number of key/value pairs in fslist
        // It will give output 4
        Console.WriteLine(fslist.Count);
    }
}

输出:

0
4

参考:

  • https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.sortedlist?view=netframework-4.7.2