C语言哈希表

Python08

C语言哈希表,第1张

/#include "iostream.h"

#include <iostream>

#include "string.h"

#include "fstream"

#define NULL 0

unsigned int key

unsigned int key2

int *p

struct node //建节点

{

char name[8],address[20]

char num[11]

node * next

}

typedef node* pnode

typedef node* mingzi

node **phone

node **nam

node *a

using namespace std//使用名称空间

void hash(char num[11]) //哈希函数

{

int i = 3

key=(int)num[2]

while(num[i]!=NULL)

{

key+=(int)num[i]

i++

}

key=key%20

}

void hash2(char name[8]) //哈希函数

{

int i = 1

key2=(int)name[0]

while(name[i]!=NULL)

{

key2+=(int)name[i]

i++

}

key2=key2%20

}

node* input() //输入节点

{

node *temp

temp = new node

temp->next=NULL

cout<<"输入姓名:"<<endl

cin>>temp->name

cout<<"输入地址:"<<endl

cin>>temp->address

cout<<"输入电话:"<<endl

cin>>temp->num

return temp

}

int apend() //添加节点

{

node *newphone

node *newname

newphone=input()

newname=newphone

newphone->next=NULL

newname->next=NULL

hash(newphone->num)

hash2(newname->name)

newphone->next = phone[key]->next

phone[key]->next=newphone

newname->next = nam[key2]->next

nam[key2]->next=newname

return 0

}

void create() //新建节点

{

int i

phone=new pnode[20]

for(i=0i<20i++)

{

phone[i]=new node

phone[i]->next=NULL

}

}

void create2() //新建节点

{

int i

nam=new mingzi[20]

for(i=0i<20i++)

{

nam[i]=new node

nam[i]->next=NULL

}

}

void list() //显示列表

{

int i

node *p

for(i=0i<20i++)

{

p=phone[i]->next

while(p)

{

cout<<p->name<<'_'<<p->address<<'_'<<p->num<<endl

p=p->next

}

}

}

void list2() //显示列表

{

int i

node *p

for(i=0i<20i++)

{

p=nam[i]->next

while(p)

{

cout<<p->name<<'_'<<p->address<<'_'<<p->num<<endl

p=p->next

}

}

}

void find(char num[11]) //查找用户信息

{

hash(num)

node *q=phone[key]->next

while(q!= NULL)

{

if(strcmp(num,q->num)==0)

break

q=q->next

}

if(q)

cout<<q->name<<"_" <<q->address<<"_"<<q->num<<endl

else cout<<"无此记录"<<endl

}

void find2(char name[8]) //查找用户信息

{

hash2(name)

node *q=nam[key2]->next

while(q!= NULL)

{

if(strcmp(name,q->name)==0)

break

q=q->next

}

if(q)

cout<<q->name<<"_" <<q->address<<"_"<<q->num<<endl

else cout<<"无此记录"<<endl

}

void save() //保存用户信息

{

int i

node *p

for(i=0i<20i++)

{

p=phone[i]->next

while(p)

{

fstream iiout("out.txt", ios::out)

iiout<<p->name<<"_"<<p->address<<"_"<<p->num<<endl

p=p->next

}

}

}

void menu() //菜单

{

cout<<"0.添加记录"<<endl

cout<<"3.查找记录"<<endl

cout<<"2.姓名散列"<<endl

cout<<"4.号码散列"<<endl

cout<<"5.清空记录"<<endl

cout<<"6.保存记录"<<endl

cout<<"7.退出系统"<<endl

}

int main()

{

char num[11]

char name[8]

create()

create2()

int sel

while(1)

{

menu()

cin>>sel

if(sel==3)

{ cout<<"9号码查询,8姓名查询"<<endl

int b

cin>>b

if(b==9)

{ cout<<"请输入电话号码:"<<endl

cin >>num

cout<<"输出查找的信息:"<<endl

find(num)

}

else

{ cout<<"请输入姓名:"<<endl

cin >>name

cout<<"输出查找的信息:"<<endl

find2(name)}

}

if(sel==2)

{ cout<<"姓名散列结果:"<<endl

list2()

}

if(sel==0)

{ cout<<"请输入要添加的内容:"<<endl

apend()

}

if(sel==4)

{ cout<<"号码散列结果:"<<endl

list()

}

if(sel==5)

{ cout<<"列表已清空:"<<endl

create()

create2()

}

if(sel==6)

{ cout<<"通信录已保存:"<<endl

save()

}

if(sel==7) return 0

}

return 0

}

将以上 C 语言代码转换为 Python 语言可能需要对哈希表和其他数据结构进行重新实现。但是可以提供一个类似的实现方式

def search_hash(hash_table, name):

collisions = 0 # to keep track of number of collisions

index = hash_function(name)

while hash_table[index] is not None and hash_table[index]['name'] != name:

collisions += 1

index = collision_resolution(index)

if hash_table[index] is not None:

print("Search successful! Number of collisions:", collisions)

print("Name: ", hash_table[index]['name'])

print("ID: ", hash_table[index]['id'])

print("Phone: ", hash_table[index]['phone'])

else:

print("Search unsuccessful.")

这个例子使用了字典来存储联系人的信息,其中 'name','id' 和 'phone' 是字典的键。hash_function() 和 collision_resolution() 函数可以用 Python 中的内置函数来实现,或者自己实现。

注意,这只是一种类似的实现方式,并不能完全替代原来的代码,还需要根据实际需求进行修改。

另外,在 Python 中可以使用字典或字典组成的列表来存储哈希表,可以使用字典中的 get() 方法或者列表中的 in 关键字来查找一个元素是否在字典或列表中,如果要实现类似 C 语言中的冲突解决方式,可以在字典中使用链表或线性探测法来实现。

这里只是给出了一种可能的实现方式,具体实现还需要根据具体需求进行调整。

这个是我们的作业 ^^根据自己的需要改一下就行了

#include <stdio.h>

#include<malloc.h>

#include<string.h>

//#include

#define HASH_LEN 50 //哈希表的长度

#define M 47

#define NAME_NO 30 //人名的个数

typedef struct NAME

{

char *py //名字的拼音

int k //拼音所对应的整数

}NAME

NAME NameList[HASH_LEN]

typedef struct hterm//哈希表

{

char *py //名字的拼音

int k//拼音所对应的整数

int si //查找长度

}HASH

HASH HashList[HASH_LEN]

/*-----------------------姓名(结构体数组)初始化---------------------------------*/

void InitNameList()

{

NameList[0].py="chenghongxiu"

NameList[1].py="yuanhao"

NameList[2].py="yangyang"

NameList[3].py="zhanghen"

NameList[4].py="chenghongxiu"

NameList[5].py="xiaokai"

NameList[6].py="liupeng"

NameList[7].py="shenyonghai"

NameList[8].py="chengdaoquan"

NameList[9].py="ludaoqing"

NameList[10].py="gongyunxiang"

NameList[11].py="sunzhenxing"

NameList[12].py="sunrongfei"

NameList[13].py="sunminglong"

NameList[14].py="zhanghao"

NameList[15].py="tianmiao"

NameList[16].py="yaojianzhong"

NameList[17].py="yaojianqing"

NameList[18].py="yaojianhua"

NameList[19].py="yaohaifeng"

NameList[20].py="chengyanhao"

NameList[21].py="yaoqiufeng"

NameList[22].py="qianpengcheng"

NameList[23].py="yaohaifeng"

NameList[24].py="bianyan"

NameList[25].py="linglei"

NameList[26].py="fuzhonghui"

NameList[27].py="huanhaiyan"

NameList[28].py="liudianqin"

NameList[29].py="wangbinnian"

char *f

int r,s0

for (int i=0i<NAME_NOi++)// 求出各个姓名的拼音所对应的整数

{

s0=0

f=NameList[i].py

for (r=0*(f+r) != '\0'r++) //方法:将字符串的各个字符所对应的ASCII码相加,所得的整数做为哈希表的关键字

s0=*(f+r)+s0

NameList[i].k=s0

}

}

/*-----------------------建立哈希表---------------------------------*/

void CreateHashList()

{

for (int i=0i<HASH_LENi++)//哈希表的初始化

{

HashList[i].py=""

HashList[i].k=0

HashList[i].si=0

}

for (i=0 i<NAME_NO)

{

int sum=0

int adr=(NameList[i].k) % M //哈希函数

int d=adr

if(HashList[adr].si==0)//如果不冲突

{

HashList[adr].k=NameList[i].k

HashList[adr].py=NameList[i].py

HashList[adr].si=1

}

else //冲突

{

do

{

d=(d+((NameList[i].k))%10+1)%M //伪散列

sum=sum+1 //查找次数加1

}while (HashList[d].k!=0)

HashList[d].k=NameList[i].k

HashList[d].py=NameList[i].py

HashList[d].si=sum+1

}i++

}

}

/*-------------------------------------查找------------------------------------*/

void FindList()

{

printf("\n\n请输入姓名的拼音: ") //输入姓名

char name[20]={0}

scanf("%s",name)

int s0=0

for (int r=0r<20r++)//求出姓名的拼音所对应的整数(关键字)

s0+=name[r]

int sum=1

int adr=s0 % M //使用哈希函数

int d=adr

if(HashList[adr].k==s0) //分3种情况进行判断

printf("\n姓名:%s 关键字:%d 查找长度为: 1",HashList[d].py,s0)

else if (HashList[adr].k==0)

printf("无该记录!")

else

{

int g=0

do

{

d=(d+s0%10+1)%M //伪散列

sum=sum+1

if (HashList[d].k==0)

{

printf("无记录! ")

g=1

}

if (HashList[d].k==s0)

{

printf("\n姓名:%s 关键字:%d 查找长度为:%d",HashList[d].py,s0,sum)

g=1

}

}while(g==0)

}

}

/*--------------------------------显示哈希表----------------------------*/

void Display()

{

printf("\n\n地址\t关键字\t\t搜索长度\tH(key)\t\t拼音 \n")//显示的格式

for(int i=0i<15i++)

{

printf("%d ",i)

printf("\t%d ",HashList[i].k)

printf("\t\t%d ",HashList[i].si)

printf("\t\t%d ",(HashList[i].k)%M)

printf("\t %s ",HashList[i].py)

printf("\n")

}

// printf("按任意键继续显示...\n") //由于数据比较多,所以分屏显示(以便在Win9x/DOS下能看到所有的数据)

// getch()

for( i=15i<30i++)

{

printf("%d ",i)

printf("\t%d ",HashList[i].k)

printf("\t\t%d ",HashList[i].si)

printf("\t\t%d ",(HashList[i].k)%M)

printf("\t %s ",HashList[i].py)

printf("\n")

}

// printf("按任意键继续显示...\n")

// getch()

for( i=30i<40i++)

{

printf("%d ",i)

printf("\t%d ",HashList[i].k)

printf("\t\t%d ",HashList[i].si)

printf("\t\t%d ",(HashList[i].k)%M)

printf("\t %s ",HashList[i].py)

printf("\n")

}

//printf("按任意键继续显示...\n")

//getch()

for( i=40i<50i++)

{

printf("%d ",i)

printf("\t%d ",HashList[i].k)

printf("\t\t%d ",HashList[i].si)

printf("\t\t%d ",(HashList[i].k)%M)

printf("\t %s ",HashList[i].py)

printf("\n")

}

float average=0

for (i=0i<HASH_LENi++)

average+=HashList[i].si

average/=NAME_NO

printf("\n\n平均查找长度:ASL(%d)=%f \n\n",NAME_NO,average)

}

/*--------------------------------主函数----------------------------*/

void main()

{

/* ::SetConsoleTitle("哈希表操作") //Windows API函数,设置控制台窗口的标题

HANDLE hCon = ::GetStdHandle(STD_OUTPUT_HANDLE)//获得标准输出设备的句柄

::SetConsoleTextAttribute(hCon, 10|0) //设置文本颜色

*/

printf("\n------------------------哈希表的建立和查找----------------------")

InitNameList()

CreateHashList ()

while(1)

{

printf("\n\n")

printf("1. 显示哈希表\n")

printf("2. 查找\n")

printf("3. 退出\n")

err:

char ch1

scanf("%c",&ch1)

if (ch1=='1')

Display()

else if (ch1=='2')

FindList()

else if (ch1=='3')

return

else

{

printf("\n请输入正确的选择!")

goto err

}

}

}