码迷,mamicode.com
首页 > 其他好文 > 详细

哈希表---线性探测再散列(hash)

时间:2014-12-04 22:59:43      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:blog   io   ar   os   sp   for   div   log   bs   

//哈希表---线性探测再散列

#include <iostream>
#include <string>
#include <stdio.h>
#include <string.h>
#define m 10000
#define NULLkey -1


using namespace std;

int HashTable[m];

int Hash_search( int k)
{
    int p0, pi;
    p0=hash(k); //函数运算值
    if(HashTable[p0]== NULLkey )
    {
        return -1;
    }
    else if(HashTable[p0]==k )
    {
        return p0;
    }
    else //用线性探测再散列 解决冲突
    {
        for(i=0; i<=m-1; i++)
        {
            pi=(p0+i)%m;
            if(HashTable[pi]==NULLkey )
            {
                return -1;
            }
            else if(HashTable[pi]==k )
            {
                return pi;
            }
        }
        return -1;
    }
}

 

哈希表---线性探测再散列(hash)

标签:blog   io   ar   os   sp   for   div   log   bs   

原文地址:http://www.cnblogs.com/yspworld/p/4143913.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!