hashi_sepchaining.h

来自「This is a binary search tree with void* 」· C头文件 代码 · 共 28 行

H
28
字号
/**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 + =
减小字号Ctrl + -
显示快捷键?