第十五周專案一雜湊表及其運算的實現

2021-07-08 18:59:02 字數 867 閱讀 6873

* 檔名稱:h1.cpp

* 完成日期:2023年12月10日

* 版本號:vc6.0

* 問題描述:雜湊表及其運算的實現

* 輸入描述:無

*/#include

#define maxsize 100         //定義最大雜湊表長度

#define nullkey -1          //定義空關鍵字值

#define delkey  -2          //定義被刪關鍵字值

typedef int keytype;        //關鍵字型別

typedef char * infotype;    //其他資料型別

typedef struct

hashdata;

typedef hashdata hashtable[maxsize];        //雜湊表型別

void insertht(hashtable ha,int &n,keytype k,int p)  //將關鍵字k插入到雜湊表中

else                    //發生衝突時採用線性探查法解決衝突

while (ha[adr].key!=nullkey && ha[adr].key!=delkey);

ha[adr].key=k;

ha[adr].count=i;

}n++;

}void createht(hashtable ha,keytype x,int n,int m,int p)  //建立雜湊表

第十五周專案1 雜湊表及其運算實現

檔名稱 專案1.cbp 作 者 田藝 完成日期 2016年12月8日 版 本 號 v1.0 的雜湊表,裝填因子定為0.8,雜湊函式為h k key p,p 11,採用線性探查法解決衝突。測試中 1 輸出建立的雜湊表 2 完成關鍵字為29的元素的查詢 3 在上述雜湊表中刪除關鍵字為77的元素,再顯示雜...

第十五周 雜湊表及其運算的實現

include define maxsize 100 定義最大雜湊表長度 define nullkey 1 定義空關鍵字值 define delkey 2 定義被刪關鍵字值 typedef int keytype 關鍵字型別 typedef char infotype 其他資料型別 typedef ...

第十五周專案1 雜湊表及其運算的實現

include define maxsize 100 定義最大雜湊表長度 define nullkey 1 定義空關鍵字值 define delkey 2 定義被刪關鍵字值 typedef int keytype 關鍵字型別 typedef char infotype 其他資料型別 typedef ...