真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

哈希表實(shí)現(xiàn)源碼

                                                           

成都創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價比鏡湖網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式鏡湖網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋鏡湖地區(qū)。費(fèi)用合理售后完善,10余年實(shí)體公司更值得信賴。

#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;
}

哈希表實(shí)現(xiàn)源碼


當(dāng)前標(biāo)題:哈希表實(shí)現(xiàn)源碼
當(dāng)前地址:http://weahome.cn/article/ipdgpd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部