复习数据结构和算法04-Hash Table(线型寻址散列)
#ifndef _ROC_HASH_TABLE_H#define _ROC_HASH_TABLE_H#include #include //Hash Table//线形开址templateclass HashTable{public: typedef std::pair KeyValUnion; //键-值对 int m_nTableSize; //表大小 KeyValUnion
原创
2007-05-18 11:08:00 ·
959 阅读 ·
0 评论