MOVED TO codereview.stackexchange.com at http://codereview.stackexchange.com/questions/892/my-hashmap-in-c . But I will take the replies from either place :)

Hi Guys,

I have created a HashMap in C++. I would like you guys take a look and say how good (or bad it looks). I have not handled the errors and success messages. I have also not implemented the load factor in this map. As of now, once the size limit is reached , no more keys are accepted. I have written this code for just educational purpose only. I would like to know few things to make it better.

  1. How to implement the load factor concept, because the hash function o/p is dependent on the previous table size. If we are to change the table size, the old pair will be lost.

  2. How to make this generic ? i.e. instead of <string,int>, is it possible to write a template code for both key and the value ? Implementing a hash function will not be a problem, since the hash function can be overloaded. What about the storage ? In case of Java, the key and value will be treated as Object. Is there any option similar to that in C++ ?

  3. Any other important (or mandatory )feature this map is missing ?

Thanks in advance for your time !!!

#include <string>
#include <vector>

using namespace std;

typedef struct Node {
string key;
int value;
struct Node * left;
struct Node * right;
}doubly;


class myHashStrKey{

private:
int currentCount;
int hashsize; // Default n = 2000. So 701 slots will be initialized.
vector<doubly *> table;

//hash function taken from net and modified.
size_t hash(const std::string data) {
    size_t h(0);
    for (int i=0; i<data.length(); i++){
        h = (h << (31-i) ^ (h >> i) ^ data[i]);
    }
    h = h%hashsize;
    return h;
}

//Inserts the key and value. If the key is already present, the value is updated.
//Checks if the currentCount < (hashsize+1)*3
void insertNode(doubly ** root, int Value, const string Key){

    if(*root ==NULL){
        if(myHashStrKey::currentCount >= ((hashsize+1)*3))
            return;
        doubly * newNode = new doubly();
        newNode->value = Value;
        newNode->left = NULL;
        newNode->right = NULL;
        newNode->key = (Key);
        *root = newNode;
        myHashStrKey::currentCount++;
        return;
    }

    doubly * prev = NULL;
    doubly * current = *root;
    while(current != NULL && ((current)->key).compare(Key)){
        prev = current;
        current = current->right;
    }

    if(current ==NULL){
        if(myHashStrKey::currentCount >= ((hashsize+1)*3))
            return;
        doubly *newNode = new doubly();
        newNode->value = Value;
        newNode->key = Key;
        newNode->left = prev;
        newNode->right = NULL;
        prev->right = newNode;
        myHashStrKey::currentCount++;
    }
    else{
        (current)->value = Value;
    }
}

//Return the corresponding value for the given key from the table
int getNodeValue(doubly * root, string key){
    while(root != NULL){
        if(!key.compare(root->key)){
            return root->value;
        }
        root = root->right;
    }
    return -1;
}

//Removes the node from bucket if present and reduces the currentcount
//else nothing.
void removeNode(doubly ** root, string Key){
    doubly * toRemove;
    doubly * head = *root;

    //Check to see if the first element is the target.
    if((head != NULL) &&!(head->key).compare(Key)){
        toRemove = head;
        *root = head->right;
        if(head->right != NULL)
            head->right->left = NULL;
        delete toRemove;
        myHashStrKey::currentCount--;
        return;
    }
    //First element is not the target.
    else{
        if(head == NULL)
            return;

        while((head != NULL) &&(head->key).compare(Key)){
            head = head->right;
        }
        //Element not present. return
        if(head == NULL)
            return;

        //Element found. Remove the element and decrement currentCount.
        toRemove = head;

        head->left->right = head->right;
        if(head->right !=NULL)
            head->right->left = head->left;

        myHashStrKey::currentCount--;
        delete toRemove;
        return;
    }
}

public:
//Constructor for default size.
//I am considering that hash table size to have default value of 701.
//The average elements per bucket is 3.
//THe total allowed elements will be 701*3 i.e. tablesize*3.
myHashStrKey(){
    myHashStrKey::currentCount=0;
    myHashStrKey::hashsize = 701;
    myHashStrKey::table.insert(myHashStrKey::table.begin(),hashsize,((doubly *)NULL));
}

//Constructor for the user given size
//Hashsize is calculated to be size/3 +1 (average elements per bucket is 3)
myHashStrKey(int size){
    myHashStrKey::currentCount=0;
    myHashStrKey::hashsize = size/3 +1;
    myHashStrKey::table.insert(myHashStrKey::table.begin(),hashsize,((doubly *)NULL));
}


//Adds entry to the HashMap
void addKeyValue(const string &key,int value ){
    size_t keyHash = hash(key);
    insertNode(&(table[keyHash]), value, key);
}

//Gets the corresponding value for the key if present else nothing
int getValue(const string &key ){
    size_t keyHash = hash(key);
    int result = getNodeValue(table[keyHash],key);
    return result;
}

//Deletes the key if present else nothing.
void deleteKey(const string &key){
    size_t keyHash = hash(key);
    removeNode(&(table[keyHash]),key);
}
};
link|improve this question

2  
Shouldn't this be in codereview.stackexchange.com? – Dat Chu Feb 21 '11 at 3:01
@Dat Chhu : I did not know that. Is there a way to move it to that forum from here ? – bsoundra Feb 21 '11 at 3:14
No, there's no way to migrate it. There's nothing wrong with posting this sort of question here. – James McNellis Feb 21 '11 at 3:30
feedback

1 Answer

up vote 1 down vote accepted

How to implement the load factor concept, because the hash function o/p is dependent on the previous table size. If we are to change the table size, the old pair will be lost.

Resizing heap-allocated memory in C++ generally involves a new / copy / delete process, during which you can repack the element modulo your new number of buckets. This means an occasional insert will be particularly slow, but it's a reasonable first approach. If you really want to spread the pain around (time wise, code wise), then be aware that some hash tables do things like fall back on searches at locations based on the old bucket size(s) should they fail to find an element at the expected bucket.

How to make this generic ? i.e. instead of , is it possible to write a template code for both key and the value ? Implementing a hash function will not be a problem, since the hash function can be overloaded. What about the storage ? In case of Java, the key and value will be treated as Object. Is there any option similar to that in C++ ?

C++ templates can certainly be used for this: the existing hash-map implementations such as TR1 unordered_map / GNU/SGI hash_map etc. do exactly this, following the style of the STL-derived Standard containers such as map<>, vector<>, list<> etc..

If you use templates, the hash-table code is effectively recompiled for each combination of parameters with which the template is instantiated. This can provide nice performance benefits due to inlining followed by compile-time optimisations, though if there's a large number of instantiations your executable size may "bloat" somewhat. It's unlikely to be an issue for you. Anyway, if you want to preserve some freedom to store different value types at runtime, then you can make the value type a boost any or variant object, code up your own variant suiting your needs, create a runtime polymorphic structure for the objects (i.e. a common base class and virtual dispatch for member functions), or even try the dreaded void* and caller-managed casting....

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.