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

📄 hashsep.h

📁 weis的数据结构的实现方法很经典很强大
💻 H
字号:
/* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -