Location>code7788 >text

C#'s Dictionary Detailed explanation

Popularity:116 ℃/2025-03-06 07:58:36

Basic concepts

Dictionary<TKey, TValue>It is a generic class used in C# to store a collection of key-value pairs, and belongs toNamespace. It allows the use of keys (Key) to access the value associated with it (Value). Among them, TKey represents the type of the key in the dictionary, and TValue represents the type of the value in the dictionary.

The basic structure of Dictionary

  • Key: A key uniquely identifies an element in the collection. The key is unique and cannot be repeated.
  • Value: Data associated with the key. The value can be of any type and can be repeated.
  • KeyValuePair: A combination of keys and values, representing an element in the Dictionary.

The main features of Dictionary

  • Quick access: The corresponding value can be quickly retrieved through the key, and the average time complexity is close to O(1), becauseDictionary<TKey,TValue>Classes are implemented as hash tables.
  • Unique key: Each key is unique in Dictionary and cannot be repeated.
  • Dynamic size: The size of the Dictionary can be adjusted dynamically, and it will automatically expand when the number of elements exceeds the capacity.
  • Unordered collection: Elements in Dictionary are unordered and cannot be accessed through indexes.

Common operations of Dictionary

The following is the complete code of commonly used operations of Dictionary in C#, including adding elements, accessing elements, modifying elements, deleting elements, checking whether keys or values ​​exist, and traversing elements:

public static void DictionaryOperation()
{
//Create a Dictionary to store student ID and name
    Dictionary<int, string> studentDic = new Dictionary<int, string>();

    #regionAdd elements

// Add method (key must be unique)
    (1, "Da Yao");
    (2, "Xiao Yuan");
    (3, "Edwin");

// Indexer syntax (added when the key does not exist, update when it exists)
    studentDic[4] = "Charlie";
    studentDic[5] = "Time Chaser";

// Safely add (avoid exceptions)
    bool isAdded = (6, "Xiao Ming"); // Return false because the key already exists

    #endregion

    #regionAccess elements

// Direct access (the key must exist, otherwise there will be exceptions)
    var currentUserName = studentDic[1];
    ($"Current student name:{currentUserName}");

// Secure access (avoid exceptions)
    if ((5, outvar getUserName))
    {
        ($"UserName:{getUserName}");
    }
    else
    {
("The current student ID does not exist");
    }

    #endregion

    #region

// Modify elements
    studentDic[2] = "Big Watermelon";

    ($"Modified name:{studentDic[2]}");

    #endregion

    #regionDelete elements

// Delete elements
    bool isRemoved = (3);

    ($"Delete result:{isRemoved}");

    #endregion

    #regionCheck whether the key or value exists

// Check whether the key exists
    if ((1))
    {
("exist");
    }
    else
    {
("Not exists");
    }

    boolisExistcontainsValue = ("Chasing Time");

    (Does $" exist:{isExistcontainsValue}");


    #endregion

    #regionTravel the elements

// traverse elements
    foreach (KeyValuePair<int, string> student in studentDic)
    {
        ($"ID: {}, Name: {}");
    }