// Hash.cpp : This file contains the 'main' function. Program execution begins and ends there.//#include #include #define HASH_TABLE_COUNT 11class HashTable{ public: struct stData { int ID; int value; stData* next; stData() { ID = 0; value = 0; next = NULL; } }; stData* hashList[HASH_TABLE_COUNT]; int Ge..