Hello,
I don't know if it's the correct term, but I wanted to know if getting the reverse value from a HashMap was possible. What I mean by that is:
I have a HashMap table like this:
HashType<char,int> hashRawArray[HASH_SIZE];
HashMap<char,int> hashMap = HashMap<char,int>( hashRawArray , HASH_SIZE );
So if I write:
hashMap.getValueOf('A");
I get the corresponding value. What I want to do is to get the letter 'A' from the value B10110000. So in reverse order. Is it possible to do so?
Sorry, I'm quite new to this.