hashtable C++實現

模仿stl,實現了開鏈法形式的hashtable。純屬練手,只實現其基本功能,不當之處還望指正。本文爲實現獨立的空間配置器。node #include<iostream> #include<vector> #include<algorithm> using namespace std; template<class value> struct _hash_node{ value val; _h
相關文章
相關標籤/搜索