在C#中,SortedDictionary是一種泛型集合類,它實現了IDictionary接口并且對鍵和值進行排序。SortedDictionary根據鍵的排序順序來排序鍵值對,并且在插入、刪除和查找元素時具有較好的性能。
使用SortedDictionary可以按照鍵的自然順序(如整數或字符串的升序)來存儲和檢索鍵值對。以下是SortedDictionary的一些常見用法:
SortedDictionary<int, string> sortedDict = new SortedDictionary<int, string>();
sortedDict.Add(1, "One");
sortedDict.Add(2, "Two");
sortedDict.Add(3, "Three");
foreach (var pair in sortedDict)
{
Console.WriteLine($"Key: {pair.Key}, Value: {pair.Value}");
}
string value;
if (sortedDict.TryGetValue(2, out value))
{
Console.WriteLine($"Value for key 2: {value}");
}
sortedDict.Remove(3);
SortedDictionary提供了豐富的方法和屬性,可用于操作和管理鍵值對集合。使用SortedDictionary可以方便地對鍵值對進行排序和檢索,是一個非常有用的集合類。