-
How to replace a HashMap key with another value?
Hi,
I want to replace a HashMap key with another value. e.g. I have a HashMap as:
{AA: aa, BB:bb, CC:cc}. Now, I want something like, {AA: aa, DD:bb, CC:cc}. So, I have replace BB by DD.
Please help me with finding a solution!
Thanks,
Pompeez
-
Unless I were to write my own method extending a HashMap, I would
myHashMap.remove(BB);
then
myHashMap.put( DD, bb);
-
Re: need some more help!
Thanks a lot for your reply. I need a little more clarification plz!!
Suppose I have a hashmap like this - {AA: aa, BB:bb, CC: {FF: ff, BB: xx}}. Now, I need to replace BB by DD in BB:bb. Given this, if I remove BB:bb, and add DD:bb, how can I make sure this new pair will get added in the exact place of BB:bb, and not within CC?
Thanks!
pompeez
-
The value of the hash key, and its result when using your hash function, will determine where within the structure your value will be placed and retrieved from. The same key for two pairs (if, in using your Map, you are permitting two or more occurrences of the same key, something a Map does not usually allow) will result in a value being in the same location ... then the separation of the values depends on your collision resolution scheme.
The result of the hash function for BB and DD as inputs would have to be the same for the values associated with these keys to be in the "same location". But ... why does it matter to you that they are in the same location? A HashMap does not create a sequence in the same way a linked list or an array creates a sequence, with elements in a set order and being addressed in that set order. The "Hash" part of the HashMap structure allows you to FIND the value quickly, using only the key. The result of the hash function given the key input tells you where to look for the value in your structure. You don't walk sequentially, you don't guess in the structure and then guess again, you "know" because of the result of the hash function. The only "order" to the user is the order within some sequence structure in which you store references to keys or in which you find values, not within the HashMap itself.
There is no reason that a second HashMap cannot be the "value" part of a pair in the first HashMap, and the second BB would be placed in the second HashMap according to the hash result for that structure. However, the values must be the same kind of objects, and a HashMap is a very different object than a string ... so unless you are setting values as being members of class Object (requiring you to do a whole lot of typechecking and casting) you are going to have some issues with your structure is you are going to have a HashMap value.
Last edited by nspils; 09-18-2007 at 09:29 AM.
Similar Threads
-
By Brian Pittman in forum Database
Replies: 2
Last Post: 04-29-2007, 08:23 AM
-
By mannuvashishta in forum .NET
Replies: 1
Last Post: 04-06-2007, 12:47 PM
-
By sachinkataria in forum Java
Replies: 0
Last Post: 09-21-2006, 08:19 AM
-
By RossOliver in forum VB Classic
Replies: 4
Last Post: 03-16-2006, 05:23 PM
-
By Martin in forum VB Classic
Replies: 22
Last Post: 12-03-2001, 03:53 AM
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Development Centers
-- Android Development Center
-- Cloud Development Project Center
-- HTML5 Development Center
-- Windows Mobile Development Center
|