亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

c# sorteddictionary如何使用

c#
小樊
82
2024-11-23 01:14:08
欄目: 編程語言

SortedDictionary 是 C# 中的一個類,它是一個字典,其中的元素按照鍵(Key)自動排序。要使用 SortedDictionary,首先需要引用 System.Collections.Generic 命名空間。以下是如何使用 SortedDictionary 的基本步驟:

  1. 創建一個新的 SortedDictionary 實例。
  2. 添加鍵值對到 SortedDictionary 中。
  3. 訪問、修改或刪除 SortedDictionary 中的元素。
  4. 遍歷 SortedDictionary 中的元素。

下面是一個簡單的示例:

using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        // 創建一個新的 SortedDictionary 實例
        SortedDictionary<string, int> sortedDictionary = new SortedDictionary<string, int>();

        // 添加鍵值對到 SortedDictionary 中
        sortedDictionary.Add("apple", 3);
        sortedDictionary.Add("banana", 2);
        sortedDictionary.Add("orange", 4);
        sortedDictionary.Add("grape", 1);

        // 訪問 SortedDictionary 中的元素
        Console.WriteLine("SortedDictionary:");
        foreach (KeyValuePair<string, int> item in sortedDictionary)
        {
            Console.WriteLine($"Key: {item.Key}, Value: {item.Value}");
        }

        // 修改 SortedDictionary 中的元素
        sortedDictionary["apple"] = 5;
        Console.WriteLine("\nAfter modifying the value of 'apple':");
        foreach (KeyValuePair<string, int> item in sortedDictionary)
        {
            Console.WriteLine($"Key: {item.Key}, Value: {item.Value}");
        }

        // 刪除 SortedDictionary 中的元素
        sortedDictionary.Remove("banana");
        Console.WriteLine("\nAfter removing 'banana':");
        foreach (KeyValuePair<string, int> item in sortedDictionary)
        {
            Console.WriteLine($"Key: {item.Key}, Value: {item.Value}");
        }
    }
}

輸出:

SortedDictionary:
Key: apple, Value: 3
Key: banana, Value: 2
Key: grape, Value: 1
Key: orange, Value: 4

After modifying the value of 'apple':
Key: apple, Value: 5
Key: banana, Value: 2
Key: grape, Value: 1
Key: orange, Value: 4

After removing 'banana':
Key: apple, Value: 5
Key: grape, Value: 1
Key: orange, Value: 4

在這個示例中,我們創建了一個 SortedDictionary 實例,并向其中添加了一些鍵值對。然后,我們遍歷了 SortedDictionary 中的元素,修改了 “apple” 的值,并刪除了 “banana”。

0
环江| 偃师市| 蕉岭县| 烟台市| 桐柏县| 南昌县| 法库县| 饶阳县| 黎平县| 米脂县| 仙桃市| 大兴区| 桃园县| 永城市| 岑巩县| 东乌珠穆沁旗| 周口市| 名山县| 安溪县| 河池市| 山东| 二连浩特市| 巩留县| 山西省| 蒙城县| 渑池县| 老河口市| 广元市| 仁怀市| 堆龙德庆县| 子洲县| 涪陵区| 桂阳县| 通河县| 灵丘县| 尼玛县| 荥阳市| 颍上县| 武清区| 庆云县| 冕宁县|