哈希查找解决地址冲突的两种最常见方法(线性探测再散列,链地址法)C++实现
#include<iostream>
#include<iomanip>
using namespace std;
typedef struct Node
{
int data;
struct Node *next;
}node;
int len,num,M,numbers,i=0,mod,count=0;
int *a;
node **p,*s;
float ASL=0,ASL1=0;
int ListLength(node * head)
{
int length=0;
node *p;
p=head;
while(p)
{
length++;
p=p->next;
}
return length;
}
void Insert(node * &head,node * s)
{
node *p;
p=head;
while(p->next)
{
p=p->next;
}
p->next=s;
}
void Print(node * head)
{
node *p;
p=head;
while(p)
{
cout<<"->"<<p->data;
p=p->next;
}
}
void f1()
{
cout<<"Input HashTable address length:";
cin>>len;
cout<<"Input the value of M in Hash function H(k)=k%M:";
cin>>M;
a=new int[len];
cout<<"Input the number of data to be hashed into the hash table:";
cin>>numbers;
for(i=0;i<len;i++)
{
a[i]=-1;
}
cout<<"please input the keys:";
for(i=1;i<=numbers;i++)
{
cin>>num;
mod=num%M;
if(a[mod]==-1)
{
a[mod]=num;
ASL+=1;
}
else
{
while(a[(++mod)%len]!=-1)
{
count++;
}
a[mod]=num;
ASL+=(count+2);
}
}
for(i=0;i<len;i++)
{
count=0;
if(a[i]==-1)
ASL1+=0;
else
{
int j=i;
while(a[(++j)%len]!=-1)
{
count++;
}
ASL1+=(count+1);
}
}
cout<<"the hash table is as followed:"<<endl<<endl;
cout<<"HashAddress";
for(i=0;i<len;i++)
{
cout<<setw(4)<<i;
}
cout<<endl;
cout<<" Key ";
for(i=0;i<len;i++)
{
if(a[i]==-1)
cout<<setw(4)<<'\0';
else
cout<<setw(4)<<a[i];
}
cout<<endl<<endl;
cout<<"Hash search successfully using linear detection method to resolve conflicts and the average search length ASL is:";
cout<<(float)ASL/numbers<<endl;
cout<<"Hash search unsuccessfully using linear detection method to resolve conflicts and the average search length ASL is:";
cout<<(float)ASL1/len<<endl;
}
void f2()
{
cout<<"input HashTable address length:";
cin>>len;
p=new node*[len];
cout<<"Input the value of M in Hash function H(k)=k%M:";
cin>>M;
cout<<"Input the number of key to be hashed into the hash table:";
cin>>numbers;
for(i=0;i<len;i++)
{
p[i]=NULL;
}
cout<<"please input the keys:";
for(i=0;i<numbers;i++)
{
cin>>num;
mod=num%M;
if(p[mod]==NULL)
{
p[mod]=new node;
p[mod]->data=num;
p[mod]->next=NULL;
ASL+=1;
}
else
{
s=new node;
s->data=num;
s->next=NULL;
Insert(p[mod],s);
ASL+=ListLength(p[mod]);
}
}
for(i=0;i<len;i++)
{
if(p[i]==NULL)
ASL1+=0;
else
ASL1+=ListLength(p[i]);
}
cout<<"the hash table is as followed:"<<endl<<endl;
for(i=0;i<len;i++)
{
cout<<setiosflags(ios::left)<<setw(3)<<i;
if(p[i]==NULL)
cout<<'^'<<endl;
else
{
Print(p[i]);
cout<<endl;
}
}
cout<<endl;
cout<<"Hash search successfully using chain address method to resolve conflicts and the average search length ASL is:";
cout<<(float)ASL/numbers<<endl;
cout<<"Hash search unsuccessfully using chain address method to resolve conflicts and the average search length ASL is:";
cout<<(float)ASL1/len<<endl;
}
void main()
{
int choice;
cout<<"1.Linear detection and re hash "<<endl;
cout<<"2.separate chaining "<<endl;
cout<<"please choose a method to solve the address conflict:";
cin>>choice;
system("cls");
switch(choice)
{
case 1:f1();break;
case 2:f2();break;
default:cout<<"input error!"<<endl;break;
}
}
若有不足欢迎指正;若有疑问鄙人也乐于解答,欢迎留言或QQ加群!
欢迎加入QQ群:735472015,群内有VC,MFC,win32API,批处理,python学习资料干货喔
题目描述 定义哈希函数为H(key) = key%11.输入表长(大于.等于11),输入关键字集合,用线性探测再散列构建哈希表,并查找给定关键字. --程序要求-- 若使用C++只能include一个 ... //哈希表---线性探测再散列 #include <iostream> #include <string> #include <stdio.h> #include ... JDK8中的HashMap相对JDK7中的HashMap做了些优化. 接下来先通过官方的英文注释探究新HashMap的散列怎么实现 先不给源码,因为直接看源码肯定会晕,那么我们先从简单的概念先讲起 ... GET和POST两种基本请求方法的区别 GET和POST是HTTP请求的两种基本方法,要说它们的区别,接触过WEB开发的人都能说出一二. 最直观的区别就是GET把参数包含在URL中,POST通过req ... 原文地址:GET和POST两种基本请求方法的区别 原文如下: GET和POST是HTTP请求的两种基本方法,要说它们的区别,接触过WEB开发的人都能说出一二. 最直观的区别就是GET把参数包含在URL ... 在网页制作中,细边框这个制作方法是必不可少的.这里介绍2种常见的表格细边框制作方法,均通过XHTML验证. <!DOCTYPE html PUBLIC "-//W3C//DTD XHT ... 之前在一些开发者平台使用网页调用API时,一再提到两种请求方法GET和POST,所以就去了解了下.那么这又不得不提到HTTP了! 一.什么是 HTTP? 超文本传输协议(HTTP)的设计目的是保证客户 ... 1,整理了一下怎么修改linux 两种时间的方法. 硬件时间:hwclock 或者clock,设置的方法是 hwclock --set --date="05/12/2018 12:30:50 ... (一)线性探测法 线性探测法是最简单的处理冲突的方法. (1)插入元素:插入元素时,如果发生冲突,算法将从该槽位向后遍历哈希表,直到找到表中的下一个空槽,并将该值放入到空槽当中. (2)查找元素:查找 ... 常见写法: 下面总结常见的响应式布局的分类: @media screen and (max-width:320px){ #talkFooter .editArea{…… } } @media scre ... [转]openAI最近推出了一个新的语言模型 "GPT-2",由于效果太好(?)几乎可以以假乱真,所以openAI正在犹豫是否把这个project完整release出来.(于是有人 ... 1.下载git,并找到安装git的文件位置,并找到git文件夹下面的Bin文件夹 2.配置环境变量 位置:右击‘计算机’->属性->高级系统设置->环境变量 最后点击确定即可 ... SkyWalking 为.NET Core https://www.cnblogs.com/liuhaoyang/p/skywalking-dotnet-v02-release.html Apache ... 转自:http://redking.blog.51cto.com/27212/116751 1.课程名称:运算符.表达式 讲解了JAVA中各种运算符的使用,包括与.或.非.大于.小于等. 2.知识点 ... CROSS_COMPILE = HI_CFLAGS= -Wall -O2 -g -march=armv7-a -mcpu=cortex-a9 -mfloat-abi=softfp -mfpu=vfpv ... Neither BindingResult nor plain target object for bean name 'command' available as request attribute ... 题目分析 一眼看上去就像是一个模拟题目,但是\(n\)的范围过大. 冷静分析一下发现难点在于如何快速求出幂和. 考虑使用伯努利数. \(B_0=1\) \(B_n=-\frac{1}{n+1}\sum ... 原文地址:http://liuzidong.iteye.com/blog/1069343 注意这个例子要使用jQuery,但是jquery文件属于静态的资源文件,所以要在springMVC中设置静态资 ... 1.首先在https://trac.osgeo.org/geos下载geos-3.6.2.tar.bz2 解压后 cd geos- ./configue //或选择安装的目录./configure - ...哈希查找解决地址冲突的两种最常见方法(线性探测再散列,链地址法)C++实现的更多相关文章
随机推荐