在C#中,SortedDictionary是一個有序字典,它根據鍵的順序存儲和遍歷元素。要遍歷SortedDictionary,您可以使用以下方法:
SortedDictionary<TKey, TValue> sortedDictionary = new SortedDictionary<TKey, TValue>();
// 添加一些元素
sortedDictionary.Add("apple", 1);
sortedDictionary.Add("banana", 2);
sortedDictionary.Add("orange", 3);
// 使用foreach循環遍歷鍵值對
foreach (KeyValuePair<TKey, TValue> entry in sortedDictionary)
{
Console.WriteLine($"Key: {entry.Key}, Value: {entry.Value}");
}
SortedDictionary<TKey, TValue> sortedDictionary = new SortedDictionary<TKey, TValue>();
// 添加一些元素
sortedDictionary.Add("apple", 1);
sortedDictionary.Add("banana", 2);
sortedDictionary.Add("orange", 3);
// 使用迭代器遍歷鍵值對
IEnumerator<KeyValuePair<TKey, TValue>> iterator = sortedDictionary.GetEnumerator();
while (iterator.MoveNext())
{
KeyValuePair<TKey, TValue> entry = iterator.Current;
Console.WriteLine($"Key: {entry.Key}, Value: {entry.Value}");
}
在這兩種方法中,您都可以看到SortedDictionary中的元素按照鍵的順序進行遍歷。