📄 hashi_sepchaining.h
字号:
/**Author jmanous..*//**A Little nice list with n complexity.Hope not so may SIGSEGV*/#ifndef HASHI_SEPCHAINING_H#define HASHI_SEPCHAINING_H#include "single_list.h"typedef struct { Node_sl *keyTable[50]; int (*hashfun)(int); int keysize; int totalsize;}hashTable;hashTable *CreateNew_hs(void);int Insert_hs (int id,int type,int size,hashTable *h);Node_sl* Delete_hs(int id , hashTable* h);Node_sl* Find_hs(int id , hashTable* h);void print_hs(hashTable* h);void merge_hs(Node_sl *array[], int p, int q, int r);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -