成都创新互联网站制作重庆分公司

哈希表实现源码

                                                           

成都创新互联-专业网站定制、快速模板网站建设、高性价比镜湖网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式镜湖网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖镜湖地区。费用合理售后完善,10余年实体公司更值得信赖。

#include
#include
using namespace std;
struct listnode
{
    int val;
    listnode* next;
    listnode(int x):val(x),next(NULL){}
};
int hash_index(int key, int table_len)
{
    return key % table_len;
}
void insert(listnode *table[], listnode* node, int table_len)
{
    int index = hash_index(node->val, table_len);
    node->next = table[index];
    table[index] = node;
}
bool hash_search(listnode *table[], int val, int table_len)
{
     int index = hash_index(val,table_len);
    listnode* head = table[index];
     while(head)
     {
    if(head->val == val)
             return true;
         head = head->next;
     }
     return false;
}
int main()
{
    const int table_len = 11;
    listnode *table[table_len] ={0};
    vector listnode_vec;
    int test[8] = {1,2,33,55,11,6,88,44};
    for(int i = 0; i < 8; i++)
    {
        listnode_vec.push_back(new listnode(test[i]));
    }
    for(int i = 0; i < listnode_vec.size(); i++)
        insert(table, listnode_vec[i], table_len);
    printf("Hashtable:\n");
    for(int i = 0; i < table_len; i++)
    {
        printf("[%d]",i);
            listnode* head = table[i];
            while(head)
            {       
            printf("->[%d]",head->val);
            head = head->next;
            }
            printf("\n");
    }
    return 0;
}

哈希表实现源码


网站标题:哈希表实现源码
分享路径:http://cxhlcq.com/article/ipdgpd.html

其他资讯

在线咨询

微信咨询

电话咨询

028-86922220(工作日)

18980820575(7×24)

提交需求

返回顶部