使用向量向量创建哈希表?

时间:2017-06-02 01:18:23

标签: c++ vector hashtable

我目前正在尝试编写一个创建哈希表的程序,使用向量矢量作为我的冲突解决方法。

我面临的问题是,在运行时,会创建一个矢量矢量,但是里面的所有Entry矢量都保持为0。我知道我的put函数有问题,但我不知道在哪里/为什么

这是我第一次创建哈希表,我很感激您可以解决的问题。我的目标是创建一个Entry矢量向量,每个Entry都有其关联的键和值。在找到新的Entry键的哈希值之后,它应该检查条目向量'用于查看密钥是否已存在的键值。如果是,则更新该密钥的值。

这是table.cpp的一部分:

Table::Table(unsigned int maximumEntries) : maxEntries(100){
    this->maxEntries = maximumEntries;
    this->Tsize = 2*maxEntries;

}

Table::Table(unsigned int entries, std::istream& input){ //do not input more than the specified number of entries.

    this->maxEntries = entries;
    this->Tsize = 2*maxEntries;

    std::string line = "";

    int numEntries = 0;


    getline(input, line);
    while(numEntries<maxEntries || input.eof()){ // reads to entries or end of file
        int key;
        std::string strData = "";

        convertToValues(key, strData, line);

        put(key, strData); // adds each of the values to the tab;e

        numEntries++;

        getline(input,line);

    }

}



void Table::put(unsigned int key, std::string data){ 
    Entry newEntryObj(key,data); //create a new Entry obj
    put(newEntryObj);
}


void Table::put(Entry e){ // creating the hash table

    assert(currNumEntries < maxEntries);

    int hash = (e.get_key() % Tsize);

    Entry newEntry = Entry(e.get_key(), e.get_data()); 

    for(int i = 0; i < hashtable[hash].size(); i++){
        if (e.get_key() == hashtable[hash][i].get_key()){ 
            hashtable[hash][i].set_data(e.get_data());
        }
        else{
            hashtable[hash].push_back(newEntry);  // IF KEY DOESNT EXIST, ADD TO THE VECTOR
        }
    }
}

这是Table.h

#ifndef table_h
#define table_h

#include "entry.h"
#include <string>
#include <istream>
#include <fstream>
#include <iostream>
#include <vector>


class Table{

  public: 

    Table(unsigned int max_entries = 100); //Builds empty table with maxEntry value
    Table(unsigned int entries, std::istream& input); //Builds table designed to hold number of entires


    void put(unsigned int key, std::string data); //creates a new Entry to put in
    void put(Entry e);  //puts COPY of entry into the table
    std::string get(unsigned int key) const; //returns string associated w/ param, "" if no entry exists
    bool remove(unsigned int key); //removes Entry containing the given key

    friend std::ostream& operator<< (std::ostream& out, const Table& t); //overloads << operator to PRINT the table.

    int getSize();

    std::vector<std::vector<Entry>> getHashtable(); 


  private:
    std::vector<std::vector<Entry>> hashtable; //vector of vectors
    int Tsize; //size of table equal to twice the max number of entries
    int maxEntries;
    int currNumEntries;

#endif /* table_h */
};

和Entry.h:

#include <string>
#include <iosfwd>

class Entry {

public:
    // constructor
    Entry(unsigned int key = 0, std::string data = "");

    // access and mutator functions
    unsigned int get_key() const;
    std::string get_data() const;
    static unsigned int access_count();
    void set_key(unsigned int k);
    void set_data(std::string d);

    // operator conversion function simplifies comparisons
    operator unsigned int () const;

    // input and output friends
    friend std::istream& operator>>
    (std::istream& inp, Entry &e);
    friend std::ostream& operator<<
    (std::ostream& out, Entry &e);

private:
    unsigned int key;
    std::string data;
    static unsigned int accesses;

};

1 个答案:

答案 0 :(得分:1)

您的代码存在各种问题,但您的问题的答案是:

void Table::put(Entry e){ // creating the hash table

看看循环。

for(int i = 0; i < hashtable[hash].size(); i++){

现在,hashtable[hash]是一个向量。但最初它没有任何元素。所以hashtable[hash].size()为0.所以你不要进入循环。

除此之外,由于hashtable[hash]未正确调整为hashtable,因此首先尝试访问Tsize会导致未定义的行为。在构造函数中尝试这个:

this->maxEntries = maximumEntries;
this->Tsize = 2*maxEntries;
this->hashtable.resize(this->Tsize);

编辑:

如果您使用std::vector::at函数而不是std::vector::operator[],您将更容易理解。例如:

void Table::put(Entry e){ // creating the hash table

    assert(currNumEntries < maxEntries);

    int hash = (e.get_key() % Tsize);

    Entry newEntry = Entry(e.get_key(), e.get_data()); 

    for(int i = 0; i < hashtabl.at(hash).size(); i++){
        if (e.get_key() == hashtable.at(hash).at(i).get_key()){ 
            hashtable.at(hash).at(i).set_data(e.get_data());
        }
        else{
            hashtable.at(hash).push_back(newEntry);  // IF KEY DOESNT EXIST, ADD TO THE VECTOR
        }
    }
}

在不调整hashtable的大小的情况下,当您第一次尝试out_of_range时,此代码会抛出hashtable.at(hash)异常。

P.S。这些都没有经过测试。