END]区域外的代码*/}bool ILH_FindKey(LHTable* pt, int x)//查找关键码x//返回true表示找到//返回false表示没找到{int d=x%pt->n;if (pt->pn[d].key==0) {return false;}else if (pt->pn[d].key==x)return true;HNode* curr=pt->pn[d].next;while (curr && curr->key!=x) curr=...