#pragmaonce
#include<iostream>
#include<string>
usingnamespacestd;
enumState
{
EMPTY,
DELETE,
EXIST,
};
template<classK,classV>
structHashTableNode
{
K_key;
V_value;
};
template<classK>
struct__HashFunc//默认的返回哈希键值key的仿函数..
分类:
其他好文 时间:
2016-06-11 07:09:45
阅读次数:
186