检查哈希表中的重复项

时间:2018-11-10 17:00:43

标签: c++ hashtable

我正在尝试读取文件,每个字符串将少于30,并且在成千上万的字符串中将有20个唯一的序列。我们正在计算在哈希表中显示唯一身份的次数。我在处理碰撞时遇到麻烦。我将所有char []值初始化为“ 0”,但是if(protiens [key] .protien ==“ 0”)无法检查结构中的那个点的值为“ 0”还是我的一个总是“ ABCDJ ...”超过10个字符,少于30个字符。因此,我认为将全部初始化为“ 0”将是查看是否已在结构体中放置一个蛋白质的一种方法。

此逻辑错误在我的第二个if语句中。

这是我们应该使用的算法,然后是我的代码。

While(there are proteins)
 Read in a protein
 Hash the initial index into the proteins table
 While(forever)
   If(found key in table)
    Increment count
    Break;
   If(found empty spot in table)
    Copy key into table
    Increment count
    Break;
   Increment index; // collision! Try the next spot!

#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>

using namespace std;

//struct to hold data and count
struct arrayelement 
{
  char protien[30] {"0"};
  int count;
};
arrayelement protiens[40];

//hash function A=65 ascii so 65-65=0 lookup table = A=0,B=1... 
//h(key) = ( first_letter_of_key + (2 * last_letter_of_key) ) % 40

int getHashKey(char firstLetter, char lastLetter)
{
   return ((int(firstLetter) - 65) + (2 * (int(lastLetter) - 65))) % 40;
}


int main()
{
   fstream file;
   string filename;
   char word[30];
   int key;

   filename = "proteins.txt";

    //open file
    file.open(filename.c_str());

    //while not eof
    while (file >> word)
    {
       //get key
       key = getHashKey(word[0], word[strlen(word)-1]);

        //loop "forever" no difference if i use 1 or 10000000 besisdes run time????
    for (int j = 0; j < 1; j++)
    {
        //if found key in table
        if (protiens[key].protien == word)
        {
            protiens[key].count++;
            break;
        }

        //if found empty spot in table
        //if(protiens[key].protien == "0") i intialized all protiens to "0" why would this not work for 
        //checking if i put a protien there already or not
        else
        {
            strcpy_s(protiens[key].protien, word);
            protiens[key].count++;
            break;
        }

        //collison incrment key
        key = getHashKey(word[0], word[strlen(word) - 1]) + 1;

    }

}
//print array of uniques with counts
for (int j = 0; j < 40; j++)
{
    cout << j << "\t" << protiens[j].protien << "\t" << protiens[j].count << endl;
}

}

1 个答案:

答案 0 :(得分:0)

    //if(protiens[key].protien == "0") i intialized all protiens to "0" why would this not work for 
    //checking if i put a protien there already or not

由于"0"是常量,而protiens[key].protien是指向变量的指针,因此它们不可能相等。

想象一下它们是否相等。这将意味着protients[key].protien[0]='Q';"0"[0]='Q';完全相同。但是前者很合理,可以更改变量。而且后者是疯狂的,修改了一个常数。

我不知道为什么当您拥有std::string时会以这种方式使用字符数组。但是,如果坚持使用,请使用strcmp来比较字符串。比较指向字符的指针是否相等,可以告诉您两个指针是否相等,而不是指向相同的字符串。