建立Hash表(散列表)(運用線性探測法解決衝突)

//根據用戶輸入的表長度、散列函數的模、以及若干個健值(個數小於表長度, 有效關鍵字不爲0)建立Hash表 //使用線性探測法解決衝突  #include<iostream> using namespace std; const int NULLKEY = 0; const int ENDFLAG = 0; const int TableSize = 16; const int mod = 13;
相關文章
相關標籤/搜索