⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hashi_sepchaining.h

📁 This is a binary search tree with void* pointer in data segment in order you to search store and del
💻 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 + -