C Program To Implement Dictionary Using Hashing Algorithms

// Create a new node Node* createNode(char* key, char* value) { Node* node = (Node*) malloc(sizeof(Node)); node->key = (char*) malloc(strlen(key) + 1); strcpy(node->key, key); node->value = (char*) malloc(strlen(value) + 1); strcpy(node->value, value); node->next = NULL; return node; }

Here is the C code for the dictionary implementation using hashing algorithms: c program to implement dictionary using hashing algorithms

typedef struct HashTable { Node** buckets; int size; } HashTable; // Create a new node Node* createNode(char* key,

// Insert a key-value pair into the hash table void insert(HashTable* hashTable, char* key, char* value) { int index = hash(key); Node* node = createNode(key, value); if (hashTable->buckets[index] == NULL) { hashTable->buckets[index] = node; } else { Node* current = hashTable->buckets[index]; while (current->next != NULL) { current = current->next; } current->next = node; } } key = (char*) malloc(strlen(key) + 1)

// Search for a value by its key char* search(HashTable* hashTable, char* key) { int index = hash(key); Node* current = hashTable->buckets[index]; while (current != NULL) { if (strcmp(current->key, key) == 0) { return current->value; } current = current->next; } return NULL; }