?? hash.h
字號:
#ifndef HASH_H#define HASH_H#include "str.h"#include "poly.h"#include "linkedList.h"typedef struct hash *hash;hash newHash ();hash newHash2 (double load);void hashInsert (hash h, poly key, poly value);poly hashLookup (hash h, poly key);double hashLoadFactor (hash h);void hashToJpg (char *fname, hash h);void hashStatus (hash h);int hashSize (hash h);int hashNumItems (hash h);linkedList hashChain (hash h, int i);#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -