Advertisement
Advertisement

C Program To Implement Dictionary Using Hashing Algorithms Today

int main() struct HashTable ht; initHashTable(&ht);

| Operation | Average Case | Worst Case | |-----------|--------------|-------------| | Insert | O(1) | O(n) | | Lookup | O(1) | O(n) | | Delete | O(1) | O(n) | | Resize | O(n) | O(n) | c program to implement dictionary using hashing algorithms