是的,SortedDictionary
是 C# 中的一个有序字典实现,它会根据键(Key)自动进行排序。SortedDictionary
是 System.Collections.Generic
命名空间下的一个类,它继承自 Dictionary
类。
以下是一个简单的示例,展示了如何使用 SortedDictionary
:
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
// 创建一个 SortedDictionary
SortedDictionary<int, string> sortedDictionary = new SortedDictionary<int, string>();
// 向 SortedDictionary 中添加键值对
sortedDictionary.Add(3, "three");
sortedDictionary.Add(1, "one");
sortedDictionary.Add(2, "two");
// 遍历 SortedDictionary
foreach (KeyValuePair<int, string> entry in sortedDictionary)
{
Console.WriteLine($"Key: {entry.Key}, Value: {entry.Value}");
}
}
}
输出结果:
Key: 1, Value: one
Key: 2, Value: two
Key: 3, Value: three
从输出结果可以看出,SortedDictionary
中的键值对已经按照键的升序排列。