hashtable C++实现

模仿stl,实现了开链法形式的hashtable。纯属练手,只实现其基本功能,不当之处还望指正。本文为实现独立的空间配置器。node #include<iostream> #include<vector> #include<algorithm> using namespace std; template<class value> struct _hash_node{ value val; _h
相关文章
相关标签/搜索