Implementing a Dictionary with a Hash Table in C#

In this exercise, you will create a dictionary using a hash table in C#. The goal of this task is to practice implementing a hash table, a highly efficient data structure used for storing key-value pairs. A hash table allows fast lookups, insertions, and deletions based on keys.

In this exercise, you will need to implement a dictionary that stores words as keys and their corresponding definitions as values. The user will be able to insert words and definitions into the hash table and search for the definitions of words by providing the key (the word itself).

This task will help you understand the basic implementation of a hash table in C#, including how to handle collisions. Such data structures are widely used in applications that require fast data access, like search engines or large-scale information storage systems.



Group

Dynamic Memory Management in C#

Objective

1. Create a hash table that will store words (as keys) and their definitions (as values).
2. Implement the ability to insert words and definitions into the hash table.
3. Allow the user to search for a definition by entering a word.
4. Handle potential collisions by implementing a suitable collision resolution strategy.
5. Display the result of the search or a message if the word is not found.
6. Provide a simple text interface that allows the user to interact with the hash table.

In this exercise, you need to create a dictionary using a hash table. The purpose of this exercise is to practice the implementation of an efficient data structure to store key-value pairs.

Example C# Exercise

 Copy C# Code
using System;
using System.Collections;

class HashTableDictionary
{
    static void Main()
    {
        Hashtable dictionary = new Hashtable(); // Create a new hashtable to store words and definitions

        // Insert some initial word-definition pairs
        dictionary.Add("C#", "A modern programming language developed by Microsoft.");
        dictionary.Add("HashTable", "A data structure that stores key-value pairs for fast lookups.");
        dictionary.Add("Dictionary", "A collection of words and their definitions.");

        Console.WriteLine("Welcome to the Dictionary HashTable!");
        Console.WriteLine("Enter 'exit' to quit the program.");
        string input;

        // Loop to interact with the user
        do
        {
            Console.WriteLine("Enter a word to search for its definition:");
            input = Console.ReadLine(); // Read the user's input

            if (input.ToLower() == "exit") // Check if the user wants to exit
                break;

            // Search for the word in the dictionary
            if (dictionary.ContainsKey(input))
            {
                Console.WriteLine("Definition: " + dictionary[input]); // Print the definition if found
            }
            else
            {
                Console.WriteLine("Sorry, the word was not found in the dictionary.");
            }

        } while (true); // Continue until the user exits
    }
}

 Output

Welcome to the Dictionary HashTable!
Enter 'exit' to quit the program.
Enter a word to search for its definition:
C#
Definition: A modern programming language developed by Microsoft.
Enter a word to search for its definition:
HashTable
Definition: A data structure that stores key-value pairs for fast lookups.
Enter a word to search for its definition:
Dictionary
Definition: A collection of words and their definitions.
Enter a word to search for its definition:
Python
Sorry, the word was not found in the dictionary.
Enter a word to search for its definition:
exit

Share this C# Exercise

More C# Practice Exercises of Dynamic Memory Management in C#

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • Checking Balanced Parentheses in a Sequence in C#

    In this exercise, you need to implement a function that checks whether a sequence of parentheses is balanced. A sequence of parentheses is considered balanced if every opening pare...

  • Merging and Sorting File Contents Alphabetically in C#

    In this exercise, you will create a program that reads the contents of two different text files, merges them into a single collection, and then sorts the collection alphabetically....

  • 3D Point Data Structure with ArrayList in C#

    In this exercise, you will create a structure called "Point3D" that represents a point in 3D space with three coordinates: X, Y, and Z. You will then create a program with a menu t...

  • Search for Sentences in a Text File in C#

    In this exercise, you will create a program that reads the content of a text file and saves it into an ArrayList. The program will then ask the user to enter a word or sentence and...

  • Implementing a Custom Queue in C#

    In this exercise, you need to implement a queue in C#. A queue is a data structure that follows the FIFO (First In, First Out) principle, meaning the first element to enter is the ...

  • Implementing a Custom Stack in C#

    In this exercise, you need to implement a stack in C#. A stack is a data structure that follows the LIFO (Last In, First Out) principle, meaning the last element to enter is the fi...