hashnode.h

来自「数据结构c++语言描述 Borland C++实现」· C头文件 代码 · 共 18 行

H
18
字号

#ifndef HashNode_
#define HashNode_

template <class E, class K> class ChainHashTable;
template <class E, class K> class ChainHashWithTail;

template <class E, class K>
class HashNode {
   friend ChainHashTable<E,K>;
   friend ChainHashWithTail<E,K>;
   private:
      E data;
      HashNode<E,K> *link;
};

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?