hashsep.h
来自「清华大学出版的数据结构(C语言版)中书中所提到的所有C源程序的实现。」· C头文件 代码 · 共 26 行
H
26 行
/* Interface for separate chaining hash table */typedef int ElementType;/* START: fig5_2.txt */ typedef unsigned int Index;/* END *//* START: fig5_7.txt */ #ifndef _HashSep_H #define _HashSep_H struct ListNode; typedef struct ListNode *Position; struct HashTbl; typedef struct HashTbl *HashTable; HashTable InitializeTable( int TableSize ); void DestroyTable( HashTable H ); Position Find( ElementType Key, HashTable H ); void Insert( ElementType Key, HashTable H ); ElementType Retrieve( Position P ); /* Routines such as Delete are MakeEmpty are omitted */ #endif /* _HashSep_H *//* END */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?