温馨提示×

c# sorteddictionary怎样实现

c#
小樊
82
2024-11-23 01:15:04
栏目: 编程语言

在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会根据键自动对元素进行排序,因此输出的键值对将按照键的升序排列。

0