在C#中,SortedDictionary是一個內置的泛型字典類,它會根據鍵自動對元素進行排序。要使用SortedDictionary,首先需要添加System.Collections.Generic命名空間的引用。
下面是一個簡單的示例,展示了如何使用SortedDictionary:
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
// 創建一個SortedDictionary,鍵和值都是整數
SortedDictionary<int, int> sortedDictionary = new SortedDictionary<int, int>();
// 向SortedDictionary中添加元素
sortedDictionary.Add(5, 10);
sortedDictionary.Add(3, 7);
sortedDictionary.Add(8, 1);
sortedDictionary.Add(1, 5);
// 遍歷SortedDictionary并輸出鍵值對
foreach (KeyValuePair<int, int> entry in sortedDictionary)
{
Console.WriteLine("Key: {0}, Value: {1}", entry.Key, entry.Value);
}
}
}
輸出結果:
Key: 1, Value: 5
Key: 3, Value: 7
Key: 5, Value: 10
Key: 8, Value: 1
在這個示例中,我們創建了一個SortedDictionary,鍵和值都是整數。然后,我們向SortedDictionary中添加了一些元素,并使用foreach循環遍歷SortedDictionary,輸出每個鍵值對。由于SortedDictionary會根據鍵自動對元素進行排序,因此輸出的鍵值對將按照鍵的升序排列。