神勇戒指

文章
12
资源
1
加入时间
3年0月9天

哈希表c++实现

哈希函数计算地址有冲突用探测函数获得新地址解决为什么哈希函数查找速度快,因为他是索引查找,最好o(1),别扯那个多没用的哈希函数计算地址这些东西。#include<iostream>using namespace std;const int maxnum = 15;int HT[maxnum]; //哈希地址表int HC[maxnum]; //计算单个地址的比较...